Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pandoc full-featured online? [closed]

Is pandoc hosted anywhere for online use with complete functionality? The online pandoc demo lacks PDF output and has a character limit.

Specifically, I'd to convert Markdown to PDF with embedded LaTeX, which offline pandoc does.

like image 921
fpsvogel Avatar asked Jan 23 '15 19:01

fpsvogel


People also ask

What is the latest version of pandoc?

pandoc 2.19. 1 (2022-08-18)

What is pandoc package?

Description. Pandoc is a Haskell library for converting from one markup format to another, and a command-line tool that uses this library. Pandoc can convert between numerous markup and word processing formats, including, but not limited to, various flavors of Markdown, HTML, LaTeX and Word docx.


2 Answers

I've wrapped Pandoc in a web service. You can try it here https://github.com/mrded/pandoc-as-a-service Usage:

curl -H "Content-Type: text/markdown" -X POST -d "# hello" http://localhost/html
like image 197
mrded Avatar answered Oct 08 '22 18:10

mrded


If you are OK with the workflow pandoc<->latex->PDF, an alternative is sharelatex. It's open source and can be self-hosted.

like image 34
ivotron Avatar answered Oct 08 '22 16:10

ivotron