我可以将使用Jekyll的GitHub页面转换为pdf吗?

时间:2018-09-19 01:10:19

标签: html jekyll github-pages pandoc

我有一个GitHub页面,其中包含我的vitae。 Github将Jekyll页面呈现为HTML,以生成网站https://emanuelfontelles.github.io/cv/

如何使用pandoc甚至Jekyll将该网页转换为pdf?

1 个答案:

答案 0 :(得分:3)

请参见http://pandoc.org/MANUAL.html#creating-a-pdf,例如:

pandoc https://emanuelfontelles.github.io/cv/ -f html-native_divs -o cv.pdf --pdf-engine=xelatex

-native_divs是禁用div解析所必需的。因为pandoc会寻找columns类,该类有时用于投影仪幻灯片演示...

或者,如果您不喜欢LaTeX:

wkhtmltopdf https://emanuelfontelles.github.io/cv/ cv.pdf

或者如果您想使用其他样式表:

pandoc -o cv.pdf --pdf-engine=wkhtmltopdf --css myprintstyles.css https://emanuelfontelles.github.io/cv/