GHC library and command-line tool for converting from one markup format to another https://hackage.haskell.org/package/pandoc
Go to file
2024-01-05 22:53:12 +01:00
ghc-pandoc.spec update to 1.13.2 [release 1.13.2-1mamba;Sun Apr 12 2015] 2024-01-05 22:53:12 +01:00
README.md package created by silvan using the webbuild interface [release 1.11.1-1mamba;Tue Apr 30 2013] 2024-01-05 22:53:11 +01:00

ghc-pandoc

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, Textile, DocBook, and LaTeX, and it can write markdown, reStructuredText, Textile, HTML, LaTeX, ConTeXt, Docbook XML, OpenDocument XML, GNU Texinfo, Emacs Org-mode, RTF, ODT, MediaWiki markup, groff man pages, EPUB, and S5 and Slidy HTML slide shows. Pandoc extends standard markdown syntax with footnotes, embedded LaTeX, definition lists, tables, and many other features. A compatibility mode is provided for those who need a drop-in replacement for Markdown.pl. In contrast to existing tools for converting markdown to HTML, which use regex substitutions, 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, 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.