Pandoc

From wikinotes

Text format converter.

Documentation

man pandoc https://man.archlinux.org/man/community/pandoc/pandoc.1.en
github https://github.com/jgm/pandoc

Locations

/usr/share/pandoc/data/templates/styles.html css partial/template

Usage

pandoc --list-input-formats
pandoc --list-extensions

pandoc \
    -f ${IN_FORMAT} \
    -t ${TO_FORMAT} \
    -o ${OUTFILE}

Examples

cat file.rst | pandoc -f rst -t html      # read stdin, render to stdout
pandoc -f docx input.docx                #
pandoc -o output.pdf -f docx input.docx  #

Syntax Highlighting

Standalone Renders

pandoc uses haskell skylighting to render syntaxhighlighting for various output formats.
You can enable this using the pandoc ... --standalone param.

Generate Style

Dump base style.css


You can dump the raw CSS template (which is rendered using haskell doctemplates) with

pandoc --print-default-data-file=templates/styles.html


Dump base highlighting.css


Copied from: https://stackoverflow.com/questions/62774695/pandoc-where-are-css-files-for-syntax-highlighting-code

highlighting-css.template

$highlighting-css$

sample.md

~~~html
<p>placeholder</p>
~~~


pandoc --template=highlighting-css.template sample.md -o highlighting.css

Now highlighting.css will contain the syntaxhighlighting css.