是否可以在github页面中使用CodeRay



我现在正在使用Jekyll-Bootstrap。在我的本地环境中,我可以在 jekyll 的 _config.yml 中启用 CodeRay,并在我的帖子中使用它,没有任何问题。但是相同的代码不能在github上运行。

我的_config.yml(省略了 jekyll-bootstrap 配置(:

# Use kramdown as markdown parser engine.
markdown:      kramdown
markdown_ext:  markdown,mkd,mkdn,md
textile_ext:   textile
kramdown:
  auto_ids: true
  footnote_nr: 1
  entity_output: as_char
  toc_levels: 1..6
  smart_quotes: lsquo,rsquo,ldquo,rdquo
  use_coderay: true
  coderay:
    coderay_wrap: div
    coderay_line_numbers: nil
    coderay_tab_width: 4
    coderay_bold_every: 10
    coderay_css: class

你可以在 github 页面上将 kramdown 与 coderay 一起使用。只需包括

markdown: kramdown
kramdown:
  use_coderay: true

在你的_config.yml.

GithHb 页面运行最小的 ruby/ruby gems 配置,它还将覆盖您的一些_config.yml设置,请参阅 https://help.github.com/articles/using-jekyll-with-pages 以获取更多信息。

解决此问题的一种方法是在本地构建,然后将生成的输出与GitHub页面同步,绕过GitGub的Jekyll配置。

相关内容

  • 没有找到相关文章

最新更新