Pandoc: Difference between revisions
Line 37: | Line 37: | ||
===STRING to MARKDOWN=== | ===STRING to MARKDOWN=== | ||
$ echo "<h1>Hello Pandoc</h1><p>from html to markdown</p>" | pandoc -f html -t markdown | |||
===WIKI to HTML=== | ===WIKI to HTML=== | ||
Line 44: | Line 44: | ||
* convert mediawiki to html: | * convert mediawiki to html: | ||
pandoc page.wiki -f mediawiki -t html -o page.html | $ pandoc page.wiki -f mediawiki -t html -o page.html | ||
===WIKI to HTML to PDF to BOOKLET PDF=== | ===WIKI to HTML to PDF to BOOKLET PDF=== |
Revision as of 11:28, 31 October 2023
You can use Pandoc to generate PDF's directly from other document formats, like Markdown, wikitext, Libre Office, slides, InDesign ICML files, or PDF.
Pandoc is described as an "universal document converter": it converts documents from one markup language into another.
Extensive documentation: Pandoc’s Manual or man pandoc
Pandoc common arguments
-f or --from - option standing for “from”, is followed by the input format
-t or --to - option standing for “to”, is followed by the output format
-S or --standalone - option standing for “standalone”, produces output with an appropriate header and footer
-s or --stylesheet - option to use a CSS stylesheet
-o or --output - option for file output
changing the default template
$ pandoc --from markdown --to html --print-default-template=html5 > template.html $ pandoc --from markdown --to html --template template.html input.md -o output.html
A range of PDF engines are supported at the moment, including Paged.js
, weasyprint
and LaTeX
. You need to select the one of choice using the --pdf-engine
option, and have the PDF engine installed on your computer.
You can follow this page for instructions: https://pandoc.org/MANUAL.html#creating-a-pdf
Examples
STRING to MARKDOWN
$ echo "
Hello Pandoc
from html to markdown
" | pandoc -f html -t markdown
WIKI to HTML
- Save the content of a wiki page on to a plain-text file, example:
page.wiki
- convert mediawiki to html:
$ pandoc page.wiki -f mediawiki -t html -o page.html
WIKI to HTML to PDF to BOOKLET PDF
EXAMPLE WIKI PAGE to HTML to PDF to BOOKLET PDF
MediaWiki provides a way to get the content of a page in wikitext or HTML:
- https://pzwiki.wdka.nl/mediadesign/Wordhole?action=raw (wikitext)
- https://pzwiki.wdka.nl/mediadesign/Wordhole?action=render (HTML)
You can use Weasyprint to generate a PDF from an URL!
$ weasyprint -s stylesheet.css https://pzwiki.wdka.nl/mediadesign/Wordhole?action=render wordhole.pdf
Another example:
curl https://pzwiki.wdka.nl/mediadesign/Voting_by_show_of_hands?action=raw > Voting_by_show_of_hands.mediawiki pandoc --from mediawiki --to html Voting_by_show_of_hands.mediawiki --output Voting_by_show_of_hands.html weasyprint Voting_by_show_of_hands.html Voting_by_show_of_hands.pdf
And to make a booklet PDF:
$ pdfbook2 --paper=a4paper --short-edge --no-crop Voting_by_show_of_hands.pdf
PAD to MARKDOWN to HTML to PDF to BOOKLET PDF
In one pipeline:
$ curl https://pad.xpub.nl/p/collaborations/export/txt | pandoc --from markdown --to html | weasyprint -s stylesheet.css - pad.pdf
or in multiple lines, and with in between moments of saving the content to files:
curl https://pad.xpub.nl/p/collaborations/export/txt > pad.md pandoc --from markdown --to html pad.md --output pad.html weasyprint -s stylesheet.css pad.html pad.pdf
And to make a booklet PDF:
$ pdfbook2 --paper=a4paper pad.pdf $ pdfbook2 --paper=a4paper --short-edge --no-crop pad.pdf