Changes to the website:

+ Mentioned ConTeXt writer in general description.
+ Added two demos involving the ConTeXt writer.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@721 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher 2007-07-15 03:14:05 +00:00
parent 8f473af610
commit a648592dc2
2 changed files with 19 additions and 10 deletions

View file

@ -47,17 +47,25 @@ click on the name of the output file:
@ pandoc -s -w man pandoc.1.md -o example11.1
12. Converting a web page to markdown:
12. ConTeXt:
@ html2markdown http://www.gnu.org/software/make/ -o example12.text
@ pandoc -s -S -w context README -o example12.tex
13. From markdown to PDF:
13. PDF via pandoc and ConTeXt's `texexec`:
@ markdown2pdf README -o example13.pdf
@ texexec --pdf example12.tex --result example13.pdf
14. PDF with numbered sections and a custom LaTeX header:
14. Converting a web page to markdown:
@ markdown2pdf -N -C myheader.tex README -o example14.pdf
@ html2markdown http://www.gnu.org/software/make/ -o example14.text
15. From markdown to PDF:
@ markdown2pdf README -o example15.pdf
16. PDF with numbered sections and a custom LaTeX header:
@ markdown2pdf -N -C myheader.tex README -o example16.pdf
[xmlto]: http://cyberelk.net/tim/xmlto/
[docbook2odf]: http://open.comsultia.com/docbook2odf/

View file

@ -5,15 +5,15 @@
Pandoc is a [Haskell] library for converting from one markup format
to another, and a command-line tool that uses this library. It can read
[markdown] and (subsets of) [reStructuredText], [HTML], and [LaTeX],
and it can write [markdown], [reStructuredText], [HTML], [LaTeX], [RTF],
[DocBook XML], [groff man], and [S5] HTML slide shows.
and it can write [markdown], [reStructuredText], [HTML], [LaTeX], [ConTeXt],
[RTF], [DocBook XML], [groff man], and [S5] HTML slide shows.
- A real markdown parser, not based on regex substitutions.
- Modular design, using separate writers and readers for each
supported format, for easy extensibility.
- [More accurate] and [faster], in many cases, than `Markdown.pl`.
- Multiple output formats--HTML, Docbook XML, LaTeX, reStructuredText,
RTF, groff man pages, S5 slide shows--generated natively,
- Multiple output formats--HTML, Docbook XML, LaTeX, ConTeXt,
reStructuredText, RTF, groff man pages, S5 slide shows--generated natively,
with no XSLT postprocessing.
- Converts *to* markdown from HTML, LaTeX, and reStructuredText.
- Unicode support.
@ -117,6 +117,7 @@ kind.
[S5]: http://meyerweb.com/eric/tools/s5/
[HTML]: http://www.w3.org/TR/html40/
[LaTeX]: http://www.latex-project.org/
[ConTeXt]: http://www.pragma-ade.nl/
[RTF]: http://en.wikipedia.org/wiki/Rich_Text_Format
[DocBook XML]: http://www.docbook.org/
[groff man]: http://developer.apple.com/DOCUMENTATION/Darwin/Reference/ManPages/man7/groff_man.7.html