0

我正在尝试使用 jekyll 构建一个博客,并且我想突出显示我的代码,在互联网上进行了一些搜索之后,我意识到我可以使用 pygments。我安装了 python-2.7.5,并安装了 pygments。

我用 gem 安装 pygments,pygments 的版本是 0.5.0。

现在问题是不管我用什么主题,代码总是有背景颜色,像这样:http ://happyroc.github.io/2013/11/07/hello/ 代码int a = 1;有背景颜色#fee9cc

# This is the default format. 
# For more see: http://jekyllrb.com/docs/permalinks/
permalink: /:year/:month/:day/:title 

exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md"]
markdown: redcarpet
redcarpet:
  extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables",       "with_toc_data"]
pygments: true

这是怎么发生的?

4

1 回答 1

1

看起来引导程序负责。检查你的 bootstrap.css 文件

于 2013-11-11T09:13:54.983 回答