在 Jekyll 中为高亮标签添加一个 id 属性

Add an id attribute to the highlight tag in Jekyll

如何在 Jekyll 中将 id="test" 属性添加到 {% highlight %} 标签?

我的第一个镜头是这样的:

{% highlight ruby id=test %}
# some ruby code
{% endhighlight %}

但是没用。

我需要这个,因为我想参考代码。

对我来说唯一的方法是:

<div id="test">
{% highlight ruby %}
# some ruby code
{% endhighlight %}
</div>

注意,现在正在寻找这个的其他人。你可以让它更干净一点:

{: #id_name .class_name }
{% highlight ruby %}
# some ruby code
{% endhighlight %}