Pandoc

一个通用的文档转换器。(a universal document converter.)

Github星跟踪图

一个通用的文档转换器。Pandoc是一个用于从一种标记格式转换为另一种标记的Haskell库,并包括使用该库的命令行工具。

如果你需要将文件从一个标记格式转换成另一个,pandoc即是你的瑞士军用小刀。 Pandoc支持转换markdown文档, reStructuredText, textile, HTML, DocBook, LaTeX, MediaWiki markup, TWiki markup, OPML, Emacs Org-Mode, Txt2Tags, Microsoft Word docx, LibreOffice ODT, EPUB, 或者 Haddock markup等格式为:

  • HTML formats: XHTML, HTML5, and HTML slide shows using Slidy, reveal.js, Slideous, S5, or DZSlides.
  • Word processor formats: Microsoft Word docx, OpenOffice/LibreOffice ODT, OpenDocument XML
  • Ebooks: EPUB version 2 or 3, FictionBook2
  • Documentation formats: DocBook, TEI Simple, GNU TexInfo, Groff man pages, Haddock markup
  • Page layout formats: InDesign ICML
  • Outline formats: OPML
  • TeX formats: LaTeX, ConTeXt, LaTeX Beamer slides
  • PDF via LaTeX
  • Lightweight markup formats: Markdown (including CommonMark), reStructuredText, AsciiDoc, MediaWiki markup, DokuWiki markup, Emacs Org-Mode, Textile
  • 自定义格式: 自定义规则可以用 lua 编写。

主要指标

概览
名称与所有者jgm/pandoc
主编程语言Haskell
编程语言Haskell (语言数: 16)
平台Linux, Mac, Windows
许可证Other
所有者活动
创建于2010-03-20 20:34:23
推送于2025-05-04 17:57:36
最后一次提交2025-01-30 01:55:38
发布数252
最新版本名称3.6.4 (发布于 )
第一版名称1.0 (发布于 )
用户参与
星数37.2k
关注者数518
派生数3.5k
提交数18.2k
已启用问题?
问题数7865
打开的问题数1040
拉请求数1651
打开的拉请求数81
关闭的拉请求数404
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?

Pandoc

github
release
hackage
release
homebrew
stackage LTS
package
CircleCI
CI
tests
license
pandoc-discuss on google
groups

The universal markup converter

Pandoc is a Haskell library for converting from
one markup format to another, and a command-line tool that uses this
library. It can convert from

It can convert to

Pandoc can also produce PDF output via LaTeX, Groff ms, or HTML.

Pandoc’s enhanced version of Markdown includes syntax for tables,
definition lists, metadata blocks, footnotes, citations, math, and much
more. See the User’s Manual below under Pandoc’s
Markdown
.

Pandoc has a modular design: it consists of a set of readers, which
parse text in a given format and produce a native representation of the
document (an abstract syntax tree or AST), and a set of writers, which
convert this native representation into a target format. Thus, adding an
input or output format requires only adding a reader or writer. Users
can also run custom pandoc filters to modify the intermediate AST (see
the documentation for filters and
lua filters).

Because pandoc’s intermediate representation of a document is less
expressive than many of the formats it converts between, one should not
expect perfect conversions between every format and every other. Pandoc
attempts to preserve the structural elements of a document, but not
formatting details such as margin size. And some document elements, such
as complex tables, may not fit into pandoc’s simple document model.
While conversions from pandoc’s Markdown to all formats aspire to be
perfect, conversions from formats more expressive than pandoc’s Markdown
can be expected to be lossy.

Installing

Here’s how to install pandoc.

Documentation

Pandoc’s website contains a full User’s
Guide
. It is also available
here as pandoc-flavored Markdown. The website also
contains some examples of the use of
pandoc
and a limited online
demo
.

Contributing

Pull requests, bug reports, and feature requests are welcome. Please
make sure to read the contributor guidelines before
opening a new issue.

License

© 2006-2018 John MacFarlane (jgm@berkeley.edu). Released under the
GPL,
version 2 or greater. This software carries no warranty of any kind.
(See COPYRIGHT for full copyright and warranty notices.)