jekyll 中的 pygments 问题
我在 github 页面中使用 jekyll。 http://juanpabloaj.github.com/
但是,当我为 pygments 添加syntax.css 文件时
<link rel="stylesheet" href="/css/syntax.css" type="text/css" media="screen" />
jekyll 不显示语法,我在 pygments 行上设置
pygments: true
I use jekyll in github pages.
http://juanpabloaj.github.com/
But, when I add the syntax.css file for pygments
<link rel="stylesheet" href="/css/syntax.css" type="text/css" media="screen" />
jekyll don't show the syntax, I have set on the pygments line
pygments: true
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否按照此处的说明在本地安装了 pygments
https://github.com/mojombo/jekyll/wiki/install
Have you installed pygments locally per the instructions here
https://github.com/mojombo/jekyll/wiki/install
由于某种原因,我必须确保在
_config.yml
文件中指定了markdown: maruku
。I had to make sure I specified
markdown: maruku
for some reason in the_config.yml
file.尝试使用这个?
Try to use this?
要在最新版本中使用语法突出显示,您需要将 markdown 更新为 新解析器 在 _config.yml 中:
To get syntax highlighting working in the latest version you need to update markdown to the new parser in _config.yml: