diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2021-07-17 18:10:34 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2021-07-17 18:46:16 +0200 |
commit | 48459559a13a20083fc9b31eb523b8ea2bf0a63f (patch) | |
tree | 1c04e75709457403110a6f8c5c90099f22369de3 /doc/libraries.md | |
parent | 0c39509d9b6a58958228cebf5d643598e5c98950 (diff) | |
parent | 46099e79defe662e541b12548200caf29063c1c6 (diff) | |
download | pandoc-48459559a13a20083fc9b31eb523b8ea2bf0a63f.tar.gz |
Merge branch 'master' of https://github.com/jgm/pandoc
Diffstat (limited to 'doc/libraries.md')
-rw-r--r-- | doc/libraries.md | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/doc/libraries.md b/doc/libraries.md new file mode 100644 index 000000000..397dff83d --- /dev/null +++ b/doc/libraries.md @@ -0,0 +1,63 @@ +--- +title: The pandoc family of libraries +author: John MacFarlane +--- + +The following Haskell libraries have been developed to support +pandoc: + +[skylighting-core] and [skylighting] +: Syntax highlighting engine supporting over 140 languages. + +[citeproc] +: Citation processing using CSL stylesheets. + +[texmath] +: Conversion of math between tex, Word equation, MathML, and GNU eqn. + +[unicode-collation] +: Proper Unicode collation (sorting). + +[doclayout] +: Combinators for laying out a textual document, with support + for line wrapping, tabular layout, and more. + +[doctemplates] +: Supports pandoc's templates. + +[commonmark], [commonmark-extensions], and [commonmark-pandoc] +: Efficient, standards-compliant parser for commonmark and extensions. + +[ipynb] +: Representation of Jupyter notebooks and conversion to and + from JSON. + +[zip-archive] +: A pure zip file creator and extractor, used by pandoc for + docx, ODT, and EPUB. + +[rfc5051] +: Simple unicode collation (used for citation sorting). + +[emojis] +: Conversion between emoji characters and aliases. + +[jira-wiki-markup] +: Support for parsing Jira wiki syntax. + +[skylighting]: https://hackage.haskell.org/package/skylighting +[skylighting-core]: https://hackage.haskell.org/package/skylighting-core +[citeproc]: https://hackage.haskell.org/package/citeproc +[texmath]: https://hackage.haskell.org/package/texmath +[doclayout]: https://hackage.haskell.org/package/doclayout +[doctemplates]: https://hackage.haskell.org/package/doctemplates +[commonmark]: https://hackage.haskell.org/package/commonmark +[commonmark-extensions]: https://hackage.haskell.org/package/commonmark-extensions +[commonmark-pandoc]: https://hackage.haskell.org/package/commonmark-pandoc +[ipynb]: https://hackage.haskell.org/package/ipynb +[zip-archive]: https://hackage.haskell.org/package/zip-archive +[rfc5051]: https://hackage.haskell.org/package/rfc5051 +[emojis]: https://hackage.haskell.org/package/emojis +[jira-wiki-markup]: https://hackage.haskell.org/package/jira-wiki-markup +[unicode-collation]: https://hackage.haskell.org/package/unicode-collation + |