├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── README.md ├── doc ├── install.md └── troubleshoot-xelatex.md ├── pandoc-from-markdown-to-pdf ├── posix-shell-script-kit ├── pygments.theme └── tex ├── blockquote.tex ├── bullet.tex ├── fontspec.tex ├── hyphen.tex ├── inline_code.tex ├── listings.tex ├── raggedright.tex ├── sectionstyle.tex └── setspace.tex /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/README.md -------------------------------------------------------------------------------- /doc/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/doc/install.md -------------------------------------------------------------------------------- /doc/troubleshoot-xelatex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/doc/troubleshoot-xelatex.md -------------------------------------------------------------------------------- /pandoc-from-markdown-to-pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/pandoc-from-markdown-to-pdf -------------------------------------------------------------------------------- /posix-shell-script-kit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/posix-shell-script-kit -------------------------------------------------------------------------------- /pygments.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/pygments.theme -------------------------------------------------------------------------------- /tex/blockquote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/blockquote.tex -------------------------------------------------------------------------------- /tex/bullet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/bullet.tex -------------------------------------------------------------------------------- /tex/fontspec.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/fontspec.tex -------------------------------------------------------------------------------- /tex/hyphen.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/hyphen.tex -------------------------------------------------------------------------------- /tex/inline_code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/inline_code.tex -------------------------------------------------------------------------------- /tex/listings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/listings.tex -------------------------------------------------------------------------------- /tex/raggedright.tex: -------------------------------------------------------------------------------- 1 | \raggedright 2 | -------------------------------------------------------------------------------- /tex/sectionstyle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/sectionstyle.tex -------------------------------------------------------------------------------- /tex/setspace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixArm/pandoc-from-markdown-to-pdf/HEAD/tex/setspace.tex --------------------------------------------------------------------------------