jekyll 中的 pygments 问题

发布于 2024-12-04 01:26:38 字数 642 浏览 1 评论 0原文

我在 github 页面中使用 jekyll。 http://juanpabloaj.github.com/

但是,当我为 pygments 添加syntax.css 文件时

 <link rel="stylesheet" href="/css/syntax.css" type="text/css" media="screen" /> 

default.html

jekyll 不显示语法,我在 pygments 行上设置

 pygments:    true

pygments-true< /a>

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" /> 

default.html

jekyll don't show the syntax, I have set on the pygments line

 pygments:    true

pygments-true

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

战皆罪 2024-12-11 01:26:38

您是否按照此处的说明在本地安装了 pygments
https://github.com/mojombo/jekyll/wiki/install

Have you installed pygments locally per the instructions here
https://github.com/mojombo/jekyll/wiki/install

终弃我 2024-12-11 01:26:38

由于某种原因,我必须确保在 _config.yml 文件中指定了 markdown: maruku

I had to make sure I specified markdown: maruku for some reason in the _config.yml file.

一绘本一梦想 2024-12-11 01:26:38

尝试使用这个?

<link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl }}">

Try to use this?

<link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl }}">
青芜 2024-12-11 01:26:38

要在最新版本中使用语法突出显示,您需要将 markdown 更新为 新解析器 在 _config.yml 中:

markdown: kramdown

To get syntax highlighting working in the latest version you need to update markdown to the new parser in _config.yml:

markdown: kramdown
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文