summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-11-14 07:06:14 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-11-14 07:06:14 +0000
commit6fc88e95fcbec48c59d41b04045818c124b5ba2b (patch)
treeb032d6fcecaa895b26215db77be70f9cb586db49 /man
parentae2a1c2ca11de53e4c8d76ecd353b5ff970b430a (diff)
Changes to man files documenting the ' -- ' option.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@100 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'man')
-rw-r--r--man/man1/html2markdown.113
-rw-r--r--man/man1/latex2markdown.113
-rw-r--r--man/man1/markdown2html.113
-rw-r--r--man/man1/markdown2latex.113
-rw-r--r--man/man1/markdown2pdf.119
5 files changed, 66 insertions, 5 deletions
diff --git a/man/man1/html2markdown.1 b/man/man1/html2markdown.1
index 5f6162d13..b24f340ab 100644
--- a/man/man1/html2markdown.1
+++ b/man/man1/html2markdown.1
@@ -8,9 +8,20 @@ html2markdown \- converts HTML to markdown-formatted text
(or text from STDIN) from HTML to markdown-formatted plain text.
It uses an available program (e.g. wget, w3m, lynx or curl) to fetch
the contents of the URL.
+.PP
+\fBhtml2markdown\fR is a wrapper for \fBpandoc\fR.
+.SH OPTIONS
+.TP
+.B \-\-
+Any options appearing after ` \-\- ' on the command line will be passed
+directly to \fBpandoc\fR. See \fBpandoc\fR(1) for a list of options
+that may be used. Options specified in this way will override
+PANDOC_OPTS (see below). Example:
+.IP
+html2markdown input.txt -- -R
.SH ENVIRONMENT
Any command-line options contained in the PANDOC_OPTS environment variable
-will be passed to \fBpandoc\fR by this wrapper script. See \fBpandoc\fR(1)
+will be passed directly to \fBpandoc\fR. See \fBpandoc\fR(1)
for a list of options that may be used.
.SH "SEE ALSO"
\fBpandoc\fR(1),
diff --git a/man/man1/latex2markdown.1 b/man/man1/latex2markdown.1
index f60aeffe9..086cb4272 100644
--- a/man/man1/latex2markdown.1
+++ b/man/man1/latex2markdown.1
@@ -6,9 +6,20 @@ latex2markdown \- converts LaTeX to markdown-formatted text
.SH DESCRIPTION
\fBlatex2markdown\fR converts \fIinput-file\fR
(or text from STDIN) from LaTeX to markdown-formatted plain text.
+.PP
+\fBlatex2markdown\fR is a wrapper for \fBpandoc\fR.
+.SH OPTIONS
+.TP
+.B \-\-
+Any options appearing after ` \-\- ' on the command line will be passed
+directly to \fBpandoc\fR. See \fBpandoc\fR(1) for a list of options
+that may be used. Options specified in this way will override
+PANDOC_OPTS (see below). Example:
+.IP
+latex2markdown input.txt -- -R
.SH ENVIRONMENT
Any command-line options contained in the PANDOC_OPTS environment variable
-will be passed to \fBpandoc\fR by this wrapper script. See \fBpandoc\fR(1)
+will be passed directly to \fBpandoc\fR. See \fBpandoc\fR(1)
for a list of options that may be used.
.SH "SEE ALSO"
\fBpandoc\fR(1),
diff --git a/man/man1/markdown2html.1 b/man/man1/markdown2html.1
index 76b449ec8..d6243182a 100644
--- a/man/man1/markdown2html.1
+++ b/man/man1/markdown2html.1
@@ -8,9 +8,20 @@ markdown2html \- converts markdown-formatted text to HTML
(or text from STDIN) from markdown-formatted plain text to HTML.
If multiple files are specified, they will be combined to make a single
HTML document.
+.PP
+\fBmarkdown2html\fR is a wrapper for \fBpandoc\fR.
+.SH OPTIONS
+.TP
+.B \-\-
+Any options appearing after ` \-\- ' on the command line will be passed
+directly to \fBpandoc\fR. See \fBpandoc\fR(1) for a list of options
+that may be used. Options specified in this way will override
+PANDOC_OPTS (see below). Example:
+.IP
+markdown2html input.txt -- --css=main.css -S
.SH ENVIRONMENT
Any command-line options contained in the PANDOC_OPTS environment variable
-will be passed to \fBpandoc\fR by this wrapper script. See \fBpandoc\fR(1)
+will be passed directly to \fBpandoc\fR. See \fBpandoc\fR(1)
for a list of options that may be used.
.SH "SEE ALSO"
\fBpandoc\fR(1),
diff --git a/man/man1/markdown2latex.1 b/man/man1/markdown2latex.1
index 374896e5b..136d6ae84 100644
--- a/man/man1/markdown2latex.1
+++ b/man/man1/markdown2latex.1
@@ -7,9 +7,20 @@ markdown2latex \- converts markdown-formatted text to LaTeX
\fBmarkdown2latex\fR converts \fIinput-files\fR (or text from STDIN)
from markdown-formatted plain text to LaTeX. If multiple files are
specified, they will be combined to make a single LaTeX document.
+.PP
+\fBmarkdown2latex\fR is a wrapper for \fBpandoc\fR.
+.SH OPTIONS
+.TP
+.B \-\-
+Any options appearing after ` \-\- ' on the command line will be passed
+directly to \fBpandoc\fR. See \fBpandoc\fR(1) for a list of options
+that may be used. Options specified in this way will override
+PANDOC_OPTS (see below). Example:
+.IP
+markdown2latex input.txt -- --custom-header=letterhead.tex
.SH ENVIRONMENT
Any command-line options contained in the PANDOC_OPTS environment variable
-will be passed to \fBpandoc\fR by this wrapper script. See \fBpandoc\fR(1)
+will be passed directly to \fBpandoc\fR. See \fBpandoc\fR(1)
for a list of options that may be used.
.SH "SEE ALSO"
\fBpandoc\fR(1),
diff --git a/man/man1/markdown2pdf.1 b/man/man1/markdown2pdf.1
index dfbfd819e..4254e7119 100644
--- a/man/man1/markdown2pdf.1
+++ b/man/man1/markdown2pdf.1
@@ -12,9 +12,26 @@ 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.
+.PP
+\fBmarkdown2pdf\fR is a wrapper for \fBpandoc\fR.
+.SH OPTIONS
+.TP
+.B \-o FILENAME, \-\-output=FILENAME
+Specify name of output (PDF) file.
+.TP
+.B \-h, \-\-help
+Show usage message.
+.TP
+.B \-\-
+Any options appearing after ` \-\- ' on the command line will be passed
+directly to \fBpandoc\fR. See \fBpandoc\fR(1) for a list of options
+that may be used. Options specified in this way will override
+PANDOC_OPTS (see below). Example:
+.IP
+markdown2pdf input.txt -- --custom-header=letterhead.tex
.SH ENVIRONMENT
Any command-line options contained in the PANDOC_OPTS environment variable
-will be passed to \fBpandoc\fR by this wrapper script. See \fBpandoc\fR(1)
+will be passed directly to \fBpandoc\fR. See \fBpandoc\fR(1)
for a list of options that may be used.
.SH "SEE ALSO"
\fBpandoc\fR(1),