├── .Dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ └── docker_hub.yml ├── .gitignore ├── .gitmodules ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── NEWS.md ├── README.md ├── packages.full.txt ├── packages.txt ├── requirements.txt └── tests ├── expected ├── dokuwiki │ └── syntax.dokuwiki.md ├── emojis │ └── magicienletter.html ├── pandoc-codeblock-include │ └── codeblock_include.complete.md ├── pandoc-crossref │ └── crossref.md ├── pandoc-include │ └── include.complete.md └── pandoc-mustache │ └── weather.md ├── extra.bats ├── full.bats ├── input ├── dia │ └── db.dia ├── dokuwiki │ └── syntax.dokuwiki.txt ├── dutch │ ├── markdown_nl.md │ └── template_nl.tex ├── emojis │ ├── emojis.md │ ├── magicienletter.md │ └── template_emojis.tex ├── fonts │ ├── boxes.md │ ├── fontawesome.md │ └── fonts.md ├── foo.md ├── german │ ├── markdown_de.md │ └── template_de.tex ├── hindi │ ├── markdown_hi.md │ └── mwe.md ├── leaflet │ ├── images │ │ ├── background.p1.eps │ │ ├── background.p1.jpg │ │ ├── background.p5.eps │ │ ├── background.p5.png │ │ └── leaf.png │ └── leaflet.md ├── letter │ ├── letter.md │ ├── letterhead.pdf │ └── signature.pdf ├── lorem ├── pandoc-citeproc │ ├── citeproc.bibtex │ └── citeproc.md ├── pandoc-codeblock-include │ ├── codeblock_include.md │ └── query1.sql ├── pandoc-cover │ ├── blank.j2.svg │ └── sample.md ├── pandoc-crossref │ ├── crossref.md │ └── empty.md ├── pandoc-include │ └── include.md ├── pandoc-latex-admonition │ └── admonition.md ├── pandoc-latex-color │ └── colors_and_fontsize.md ├── pandoc-minted │ └── minted.md ├── pandoc-mustache │ ├── additional │ │ └── vars.yaml │ ├── vars.yaml │ └── weather.md ├── persian │ └── markdown_fa.md ├── sample-presentation.md ├── spanish │ └── markdown_es.md └── svg │ ├── bluesquare.svg │ └── svg.md ├── output ├── dia │ └── .keep ├── dokuwiki │ └── .keep ├── dutch │ └── .keep ├── emojis │ └── .keep ├── fonts │ └── .keep ├── german │ └── .keep ├── hindi │ └── .keep ├── pandoc-citeproc │ └── .keep ├── pandoc-codeblock-include │ └── .keep ├── pandoc-cover │ └── .keep ├── pandoc-crossref │ └── .keep ├── pandoc-include │ └── .keep ├── pandoc-latex-admonition │ └── .keep ├── pandoc-latex-color │ └── .keep ├── pandoc-minted │ └── .keep ├── pandoc-mustache │ └── .keep ├── persian │ └── .keep ├── spanish │ └── .keep └── svg │ └── .keep └── pandoc-cover └── .keep /.Dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker_hub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/.github/workflows/docker_hub.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/README.md -------------------------------------------------------------------------------- /packages.full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/packages.full.txt -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/packages.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/expected/dokuwiki/syntax.dokuwiki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/expected/dokuwiki/syntax.dokuwiki.md -------------------------------------------------------------------------------- /tests/expected/emojis/magicienletter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/expected/emojis/magicienletter.html -------------------------------------------------------------------------------- /tests/expected/pandoc-codeblock-include/codeblock_include.complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/expected/pandoc-codeblock-include/codeblock_include.complete.md -------------------------------------------------------------------------------- /tests/expected/pandoc-crossref/crossref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/expected/pandoc-crossref/crossref.md -------------------------------------------------------------------------------- /tests/expected/pandoc-include/include.complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/expected/pandoc-include/include.complete.md -------------------------------------------------------------------------------- /tests/expected/pandoc-mustache/weather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/expected/pandoc-mustache/weather.md -------------------------------------------------------------------------------- /tests/extra.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/extra.bats -------------------------------------------------------------------------------- /tests/full.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/full.bats -------------------------------------------------------------------------------- /tests/input/dia/db.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/dia/db.dia -------------------------------------------------------------------------------- /tests/input/dokuwiki/syntax.dokuwiki.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/dokuwiki/syntax.dokuwiki.txt -------------------------------------------------------------------------------- /tests/input/dutch/markdown_nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/dutch/markdown_nl.md -------------------------------------------------------------------------------- /tests/input/dutch/template_nl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/dutch/template_nl.tex -------------------------------------------------------------------------------- /tests/input/emojis/emojis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/emojis/emojis.md -------------------------------------------------------------------------------- /tests/input/emojis/magicienletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/emojis/magicienletter.md -------------------------------------------------------------------------------- /tests/input/emojis/template_emojis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/emojis/template_emojis.tex -------------------------------------------------------------------------------- /tests/input/fonts/boxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/fonts/boxes.md -------------------------------------------------------------------------------- /tests/input/fonts/fontawesome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/fonts/fontawesome.md -------------------------------------------------------------------------------- /tests/input/fonts/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/fonts/fonts.md -------------------------------------------------------------------------------- /tests/input/foo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/foo.md -------------------------------------------------------------------------------- /tests/input/german/markdown_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/german/markdown_de.md -------------------------------------------------------------------------------- /tests/input/german/template_de.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/german/template_de.tex -------------------------------------------------------------------------------- /tests/input/hindi/markdown_hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/hindi/markdown_hi.md -------------------------------------------------------------------------------- /tests/input/hindi/mwe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/hindi/mwe.md -------------------------------------------------------------------------------- /tests/input/leaflet/images/background.p1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/leaflet/images/background.p1.eps -------------------------------------------------------------------------------- /tests/input/leaflet/images/background.p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/leaflet/images/background.p1.jpg -------------------------------------------------------------------------------- /tests/input/leaflet/images/background.p5.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/leaflet/images/background.p5.eps -------------------------------------------------------------------------------- /tests/input/leaflet/images/background.p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/leaflet/images/background.p5.png -------------------------------------------------------------------------------- /tests/input/leaflet/images/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/leaflet/images/leaf.png -------------------------------------------------------------------------------- /tests/input/leaflet/leaflet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/leaflet/leaflet.md -------------------------------------------------------------------------------- /tests/input/letter/letter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/letter/letter.md -------------------------------------------------------------------------------- /tests/input/letter/letterhead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/letter/letterhead.pdf -------------------------------------------------------------------------------- /tests/input/letter/signature.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/letter/signature.pdf -------------------------------------------------------------------------------- /tests/input/lorem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/lorem -------------------------------------------------------------------------------- /tests/input/pandoc-citeproc/citeproc.bibtex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-citeproc/citeproc.bibtex -------------------------------------------------------------------------------- /tests/input/pandoc-citeproc/citeproc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-citeproc/citeproc.md -------------------------------------------------------------------------------- /tests/input/pandoc-codeblock-include/codeblock_include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-codeblock-include/codeblock_include.md -------------------------------------------------------------------------------- /tests/input/pandoc-codeblock-include/query1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-codeblock-include/query1.sql -------------------------------------------------------------------------------- /tests/input/pandoc-cover/blank.j2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-cover/blank.j2.svg -------------------------------------------------------------------------------- /tests/input/pandoc-cover/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-cover/sample.md -------------------------------------------------------------------------------- /tests/input/pandoc-crossref/crossref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-crossref/crossref.md -------------------------------------------------------------------------------- /tests/input/pandoc-crossref/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/input/pandoc-include/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-include/include.md -------------------------------------------------------------------------------- /tests/input/pandoc-latex-admonition/admonition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-latex-admonition/admonition.md -------------------------------------------------------------------------------- /tests/input/pandoc-latex-color/colors_and_fontsize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-latex-color/colors_and_fontsize.md -------------------------------------------------------------------------------- /tests/input/pandoc-minted/minted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-minted/minted.md -------------------------------------------------------------------------------- /tests/input/pandoc-mustache/additional/vars.yaml: -------------------------------------------------------------------------------- 1 | humidity: "12.00" 2 | -------------------------------------------------------------------------------- /tests/input/pandoc-mustache/vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-mustache/vars.yaml -------------------------------------------------------------------------------- /tests/input/pandoc-mustache/weather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/pandoc-mustache/weather.md -------------------------------------------------------------------------------- /tests/input/persian/markdown_fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/persian/markdown_fa.md -------------------------------------------------------------------------------- /tests/input/sample-presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/sample-presentation.md -------------------------------------------------------------------------------- /tests/input/spanish/markdown_es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/spanish/markdown_es.md -------------------------------------------------------------------------------- /tests/input/svg/bluesquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/svg/bluesquare.svg -------------------------------------------------------------------------------- /tests/input/svg/svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalibo/pandocker/HEAD/tests/input/svg/svg.md -------------------------------------------------------------------------------- /tests/output/dia/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/dokuwiki/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/dutch/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/emojis/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/fonts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/german/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/hindi/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-citeproc/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-codeblock-include/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-cover/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-crossref/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-include/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-latex-admonition/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-latex-color/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-minted/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/pandoc-mustache/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/persian/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/spanish/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/output/svg/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pandoc-cover/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------