aboutsummaryrefslogtreecommitdiff
path: root/man/man1/markdown2pdf.1
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-01 23:26:20 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-01 23:26:20 +0000
commit5fbe057d27f62546b403969cc184c103ee9dd281 (patch)
tree1db287228aaddf9726e397e0383ee9d9dcb1bba1 /man/man1/markdown2pdf.1
parente6f67fcc57872bf0e4574a0163f91f1ac259cd9f (diff)
downloadpandoc-5fbe057d27f62546b403969cc184c103ee9dd281.tar.gz
Man pages are now generated from markdown templates,
using pandoc's man page writer. Removed man pages from repository, added (.md) templates. Modified Makefile to generate man pages as part of the build process. git-svn-id: https://pandoc.googlecode.com/svn/trunk@609 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'man/man1/markdown2pdf.1')
-rw-r--r--man/man1/markdown2pdf.161
1 files changed, 0 insertions, 61 deletions
diff --git a/man/man1/markdown2pdf.1 b/man/man1/markdown2pdf.1
deleted file mode 100644
index 3162742bb..000000000
--- a/man/man1/markdown2pdf.1
+++ /dev/null
@@ -1,61 +0,0 @@
-.TH MARKDOWN2PDF 1 "December 15, 2006" Pandoc "User Manuals"
-.SH NAME
-markdown2pdf \- converts markdown-formatted text to PDF, using pdflatex
-.SH SYNOPSIS
-\fBmarkdown2pdf\fR [\fIoptions\fR] [\fIinput-file\fR]...
-.SH DESCRIPTION
-\fBmarkdown2pdf\fR converts \fIinput\-file\fR (or text from standard
-input) from markdown\-formatted plain text to PDF, using \fBpdflatex\fR.
-If no output filename is specified (using the \fB\-o\fR option),
-the name of the output file is derived from the input file; thus, for
-example, if the input file is \fIhello.txt\fR, the output file will be
-\fIhello.pdf\fR. If the input is read from STDIN and no output filename
-is specified, the output file will be named \fIstdin.pdf\fR. If multiple
-input files are specified, they will be concatenated before conversion,
-and the name of the output file will be derived from the first input file.
-.PP
-Input is assumed to be in the UTF\-8 character encoding. If your
-local character encoding is not UTF\-8, you should pipe input and
-output through \fBiconv\fR:
-.IP
-.B iconv \-t utf\-8 input.txt | pandoc | iconv \-f utf\-8
-.PP
-\fBmarkdown2pdf\fR assumes that the 'unicode' and 'fancyvrb' packages
-are in latex's search path. If these packages are not included in your
-latex setup, they can be obtained from <http://ctan.org>.
-.SH OPTIONS
-.PP
-\fBmarkdown2pdf\fR is a wrapper around \fBpandoc\fR, so all of
-\fBpandoc\fR's options can be used with \fBmarkdown2pdf\fR as well.
-See \fBpandoc\fR(1) for a complete list.
-The following options are most relevant:
-.TP
-.B \-o FILE, \-\-output=FILE
-Write output to \fIFILE\fR.
-.TP
-.B \-\-strict
-Use strict markdown syntax, with no extensions or variants.
-.TP
-.TP
-.B \-N, \-\-number-sections
-Number section headings in LaTeX output. (Default is not to number them.)
-.TP
-.B \-H \fIFILE\fB, \-\-include-in-header=\fIFILE\fB
-Include (LaTeX) contents of \fIFILE\fR at the end of the header. Implies
-\fB\-s\fR.
-.TP
-.B \-B \fIFILE\fB, \-\-include-before-body=\fIFILE\fB
-Include (LaTeX) contents of \fIFILE\fR at the beginning of the document body.
-.TP
-.B \-A \fIFILE\fB, \-\-include-after-body=\fIFILE\fB
-Include (LaTeX) contents of \fIFILE\fR at the end of the document body.
-.TP
-.B \-C \fIFILE\fB, \-\-custom-header=\fIFILE\fB
-Use contents of \fIFILE\fR
-as the LaTeX document header (overriding the default header, which can be
-printed using '\fBpandoc \-D latex\fR'). Implies \fB-s\fR.
-.SH "SEE ALSO"
-\fBpandoc\fR(1),
-\fBpdflatex\fR(1)
-.SH AUTHOR
-John MacFarlane and Recai Oktas