无法在jekyll中格式化

时间:2015-06-25 15:54:43

标签: jekyll

有人可以帮助我获取我的代码块(通过美化插件)和标题分隔吗?我google了很多但没有找到解决方案。 我在jekyll写了一篇博客,并使用了美化插件来突出显示代码。我的config.yml文件中有以下配置

减价:kramdown
荧光笔:pygments
隆重的接待:
  扩展:[“no_intra_emphasis”,“fenced_code_blocks”,“autolink”,“tables”,“with_toc_data”]

kramdown:
  输入:GFM
  use_coderay:true
  auto_ids:true
  footnote_nr:1
  entity_output:as_char
  toc_levels:1..6
  smart_quotes:lsquo,rsquo,ldquo,rdquo   enable_coderay:false

我无法发布我的图片,因此请查看以下网址,查看我的.md文件摘要 http://i.stack.imgur.com/yHroW.png

我希望头条新闻不受代码阻止 以下是我的博客http://i.stack.imgur.com/BEqVE.png

的输出

1 个答案:

答案 0 :(得分:0)

如果你想在jekyll中突出显示代码,那么尝试使用两年的插件是没用的。

只需使用hightlight tag

{% highlight java %}
import java.toto;

public class ReadFile {
    public static void main(String[] args) throws IOException{
        String fileContents = readEntireFile("./foo.txt");
    }

... many more java code here

}
{% endhighlight %}

您还需要一个样式表。可以找到一个here以及更多示例here