Lihb +

使用pandoc转换文件格式例子

该文章来源于pandoc官网

Pandoc a universal document converter

Try pandoc online

You can try pandoc online here.

Examples

To see the output created by each of the commands below, click on the name of the output file:

  1. HTML fragment:

    1. pandoc README -o example1.html
  2. Standalone HTML file:

    1. pandoc -s README -o example2.html
  3. HTML with smart quotes, table of contents, CSS, and custom footer:

    1. pandoc -s -S --toc -c pandoc.css -A footer.html README -o example3.html
  4. LaTeX:

    1. pandoc -s README -o example4.tex
  5. From LaTeX to markdown:

    1. pandoc -s example4.tex -o example5.text
  6. reStructuredText:

    1. pandoc -s -t rst --toc README -o example6.text
  7. Rich text format (RTF):

    1. pandoc -s README -o example7.rtf
  8. Beamer slide show:

    1. pandoc -t beamer SLIDES -o example8.pdf
  9. DocBook XML:

    1. pandoc -s -S -t docbook README -o example9.db

    Chunked XHTML via DocBook and xmlto:

    1. xmlto xhtml -m config.xsl example9.db -o example9/
  10. Man page:

    1. pandoc -s -t man pandoc.1.md -o example10.1
  11. ConTeXt:

    1. pandoc -s -t context README -o example11.tex
  12. Converting a web page to markdown:

    1. pandoc -s -r html http://www.gnu.org/software/make/ -o example12.text
  13. From markdown to PDF:

    1. pandoc README -o example13.pdf
  14. PDF with numbered sections and a custom LaTeX header:

    1. pandoc -N --template=mytemplate.tex --variable mainfont=Georgia --variable sansfont=Arial --variable monofont="Bitstream Vera Sans Mono" --variable fontsize=12pt --variable version=1.10 README --latex-engine=xelatex --toc -o example14.pdf
  15. A wiki program using Happstack and pandoc: gitit

  16. HTML slide shows:

    1. pandoc -s --mathml -i -t dzslides SLIDES -o example16a.html
    2. pandoc -s --webtex -i -t slidy SLIDES -o example16b.html
    3. pandoc -s --mathjax -i -t revealjs SLIDES -o example16d.html
  17. TeX math in HTML:

    1. pandoc math.text -s -o mathDefault.html
    2. pandoc math.text -s --mathml -o mathMathML.html
    3. pandoc math.text -s --webtex -o mathWebTeX.html
    4. pandoc math.text -s --mathjax -o mathMathJax.html
    5. pandoc math.text -s --latexmathml -o mathLaTeXMathML.html
  18. Syntax highlighting of delimited code blocks:

    1. pandoc code.text -s --highlight-style pygments -o example18a.html
    2. pandoc code.text -s --highlight-style kate -o example18b.html
    3. pandoc code.text -s --highlight-style monochrome -o example18c.html
    4. pandoc code.text -s --highlight-style espresso -o example18d.html
    5. pandoc code.text -s --highlight-style haddock -o example18e.html
    6. pandoc code.text -s --highlight-style tango -o example18f.html
    7. pandoc code.text -s --highlight-style zenburn -o example18g.html
  19. GNU Texinfo, converted to info, HTML, and PDF formats:

    1. pandoc README -s -o example19.texi
    2. makeinfo example19.texi -o example19.info
    3. makeinfo example19.texi --html -o example19
    4. texi2pdf example19.texi # produces example19.pdf
  20. OpenDocument XML:

    1. pandoc README -s -t opendocument -o example20.xml
  21. ODT (OpenDocument Text, readable by OpenOffice):

    1. pandoc README -o example21.odt
  22. MediaWiki markup:

    1. pandoc -s -S -t mediawiki --toc README -o example22.wiki
  23. EPUB ebook:

    1. pandoc -S README -o README.epub
  24. Markdown citations:

    1. pandoc -s -S --biblio biblio.bib --csl chicago-author-date.csl CITATIONS -o example24a.html
    2. pandoc -s -S --biblio biblio.bib --csl chicago-fullnote-bibliography.csl CITATIONS -o example24b.html
    3. pandoc -s -S --biblio biblio.bib --csl ieee.csl CITATIONS -t man -o example24c.1
  25. Textile writer:

    1. pandoc -s -S README -t textile -o example25.textile
  26. Textile reader:

    1. pandoc -s -S example25.textile -f textile -t html -o example26.html
  27. Org-mode:

    1. pandoc -s -S README -o example27.org
  28. AsciiDoc:

    1. pandoc -s -S README -t asciidoc -o example28.txt
  29. Word docx:

    1. pandoc -s -S README -o example29.docx
  30. LaTeX math to docx:

    1. pandoc -s math.tex -o example30.docx
  31. DocBook to markdown:

    1. pandoc -f docbook -t markdown -s howto.xml -o example31.text
  32. MediaWiki to html5:

    1. pandoc -f mediawiki -t html5 -s haskell.wiki -o example32.html
  33. Custom writer:

    1. pandoc -t sample.lua example33.text -o example33.html
  34. Docx with a reference docx:

    1. pandoc -S --reference-docx twocolumns.docx -o UsersGuide.docx README
  35. Docx to markdown, including math:

    1. pandoc -s example30.docx -t markdown -o example35.md
  36. EPUB to plain text:

    1. pandoc README.epub -t plain -o example36.text
点击查看评论

Blog

Knowledge

Project