我正在尝试突出显示一段液体和html代码,但它似乎没有用。所有其他语言都可以正常工作。
我正在使用Jekyll v3.8.5,gemfile.lock中的Rouge版本是v3.3.0
我一直将代码块包装在{% highlight xxx %} - {% endhighlight %}
中,而其他语言没有任何问题。
以下是我目前正在使用的
{% highlight liqiud %}
{% if project.tags.size > 0 %}
{% for tag in project.tags %}
<span class="project-tags text-lower text-monospace">{{ tag }}</span>
{% endfor %}
{% endif %}
{% endhighlight %}
下面的块突出显示了没有任何问题,它似乎是任何带有液体的东西都无法正常工作。
{% highlight css %}
.project-tags, .post-tags {
font-size: 0.875rem;
color: #0366d6;
background-color: #f1f8ff;
border-radius: 3px;
display: inline-block;
margin: 0 .5em .5em 0;
padding: .3em .9em;
white-space: nowrap;
}
{% endhighlight %}
对于液体块,我只得到一个空的代码块。这些是我的_config.yml
设置:
kramdown:
syntax_highlighter: rouge
syntax_highlighter_opts:
css_class: 'highlight'
span:
line_numbers: false
block:
line_numbers: true
我不会说谎,我有点困惑。
答案 0 :(得分:2)
{% highlight liqiud %}
可能是您拼写错误的liquid
吗?