pandoc/pandoc-server
2024-12-07 13:55:11 -08:00
..
src/Text/Pandoc Add support for list of figures (lof) and list of tables (lot) () 2024-09-22 11:49:52 -07:00
COPYING.md Split pandoc-server, pandoc-cli into separate packages. () 2022-09-22 09:47:07 -07:00
pandoc-server.cabal Depend on typst 0.6.1 2024-12-07 13:55:11 -08:00
README.md Update more copyright dates to 2024. 2024-06-08 16:46:42 +02:00

pandoc-server

pandoc-server is a Haskell library providing access to pandoc's document conversions as an HTTP server.

For a description of the API, see pandoc-server.md in the pandoc source repository.

Example of use:

module Main where
import Text.Pandoc.Server (app)
import qualified Network.Wai.Handler.Warp as Warp

main :: IO ()
main = Warp.run 3000 app

License

© 2006-2024 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.)