summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-10-17 14:22:29 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-10-17 14:22:29 +0000
commitdf7b68225101966051f8b592a27127bf789eb81e (patch)
treea063e97ed58d0bdb2cbb5a95c3e8c1bcce54aa00 /man
parente7dbfef4d8aa528d9245424e9c372e900a774c90 (diff)
initial import
git-svn-id: https://pandoc.googlecode.com/svn/trunk@2 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'man')
-rw-r--r--man/man1/html2markdown.115
-rw-r--r--man/man1/latex2markdown.113
-rw-r--r--man/man1/markdown2html.115
-rw-r--r--man/man1/markdown2latex.115
-rw-r--r--man/man1/markdown2pdf.116
-rw-r--r--man/man1/pandoc.120
6 files changed, 94 insertions, 0 deletions
diff --git a/man/man1/html2markdown.1 b/man/man1/html2markdown.1
new file mode 100644
index 000000000..bb084e36e
--- /dev/null
+++ b/man/man1/html2markdown.1
@@ -0,0 +1,15 @@
+.TH PANDOC 1 "AUGUST 2006" Linux "User Manuals"
+.SH NAME
+html2markdown \- converts HTML to markdown-formatted text
+.SH SYNOPSIS
+.B html2markdown [input-file or URL]
+.SH DESCRIPTION
+.B html2markdown
+converts input-file (or text from STDIN) or URL from HTML to
+markdown-formatted plain text. Uses an available program
+(e.g. wget, w3m, lynx or curl) to fetch the URL.
+.SH AUTHOR
+John MacFarlane <jgm at berkeley.edu>
+.SH "SEE ALSO"
+pandoc (1), markdown2html (1), markdown2latex (1), latex2markdown (1), markdown2pdf (1)
+
diff --git a/man/man1/latex2markdown.1 b/man/man1/latex2markdown.1
new file mode 100644
index 000000000..abc140a0f
--- /dev/null
+++ b/man/man1/latex2markdown.1
@@ -0,0 +1,13 @@
+.TH PANDOC 1 "AUGUST 2006" Linux "User Manuals"
+.SH NAME
+latex2markdown \- converts LaTeX to markdown-formatted text
+.SH SYNOPSIS
+.B latex2markdown [input-file]
+.SH DESCRIPTION
+.B latex2markdown
+converts input-file from LaTeX to markdown-formatted plain text.
+.SH AUTHOR
+John MacFarlane <jgm at berkeley.edu>
+.SH "SEE ALSO"
+pandoc (1), markdown2html (1), html2markdown (1), markdown2latex (1), markdown2pdf (1)
+
diff --git a/man/man1/markdown2html.1 b/man/man1/markdown2html.1
new file mode 100644
index 000000000..cc91a9a6a
--- /dev/null
+++ b/man/man1/markdown2html.1
@@ -0,0 +1,15 @@
+.TH PANDOC 1 "AUGUST 2006" Linux "User Manuals"
+.SH NAME
+markdown2html \- converts markdown-formatted text to HTML
+.SH SYNOPSIS
+.B markdown2html [input-files]
+.SH DESCRIPTION
+.B markdown2html
+converts input-files (or text from STDIN) from markdown-formatted
+plain text to HTML.
+.SH AUTHOR
+John MacFarlane <jgm at berkeley.edu>
+.SH "SEE ALSO"
+pandoc (1), html2markdown (1), markdown2latex (1), latex2markdown (1),
+markdown2pdf (1)
+
diff --git a/man/man1/markdown2latex.1 b/man/man1/markdown2latex.1
new file mode 100644
index 000000000..ee34dd112
--- /dev/null
+++ b/man/man1/markdown2latex.1
@@ -0,0 +1,15 @@
+.TH PANDOC 1 "AUGUST 2006" Linux "User Manuals"
+.SH NAME
+markdown2latex \- converts markdown-formatted text to LaTeX
+.SH SYNOPSIS
+.B markdown2latex [input-files]
+.SH DESCRIPTION
+.B markdown2latex
+converts input-files (or text from STDIN) from markdown-formatted
+plain text to LaTeX.
+.SH AUTHOR
+John MacFarlane <jgm at berkeley.edu>
+.SH "SEE ALSO"
+pandoc (1), markdown2html (1), html2markdown (1), latex2markdown (1),
+markdown2pdf (1)
+
diff --git a/man/man1/markdown2pdf.1 b/man/man1/markdown2pdf.1
new file mode 100644
index 000000000..f49d0e3d3
--- /dev/null
+++ b/man/man1/markdown2pdf.1
@@ -0,0 +1,16 @@
+.TH PANDOC 1 "AUGUST 2006" Linux "User Manuals"
+.SH NAME
+markdown2pdf \- converts markdown-formatted text to PDF, using pdflatex
+.SH SYNOPSIS
+.B markdown2pdf [input-file]
+.SH DESCRIPTION
+.B markdown2pdf
+converts input-file (or text from STDIN, which in this case, the
+resulting PDF file is named as 'stdin.pdf') from markdown-formatted
+plain text to PDF, using LaTeX. Cleans up intermediate LaTeX files.
+.SH AUTHOR
+John MacFarlane <jgm at berkeley.edu>
+.SH "SEE ALSO"
+pandoc (1), markdown2html (1), html2markdown (1), markdown2latex (1),
+latex2markdown (1)
+
diff --git a/man/man1/pandoc.1 b/man/man1/pandoc.1
new file mode 100644
index 000000000..8fb4afe5e
--- /dev/null
+++ b/man/man1/pandoc.1
@@ -0,0 +1,20 @@
+.TH PANDOC 1 "AUGUST 2006" Linux "User Manuals"
+.SH NAME
+pandoc \- general markup converter
+.SH SYNOPSIS
+.B pandoc [options] [input-files]
+.SH DESCRIPTION
+.B pandoc
+converts files from one markup format to another. It can read markdown
+and (with some limitations) reStructuredText, HTML, and LaTeX, and it
+can write markdown, reStructuredText, HTML, LaTeX, RTF, and S5 HTML
+slide shows.
+.SH OPTIONS
+For full usage information, including command-line options,
+type
+.B pandoc -h
+.SH AUTHOR
+John MacFarlane <jgm at berkeley.edu>
+.SH "SEE ALSO"
+markdown2html (1), html2markdown (1), markdown2latex (1), latex2markdown (1), markdown2pdf (1)
+