我有一个GitHub页面,其中包含我的vitae。 Github将Jekyll页面呈现为HTML,以生成网站https://emanuelfontelles.github.io/cv/。
如何使用pandoc甚至Jekyll将该网页转换为pdf?
答案 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/