我写了这个插件:
module Jekyll
module Tags
class Prism < Liquid::Block
def initialize(tag_name, text, tokens)
@arg = text.strip
super
end
def render(context)
output = super(context)
"<pre><code class=\"language-#{@arg}\">#{output}</code></pre>"
end
end
end
end
Liquid::Template.register_tag('prism', Jekyll::Tags::Prism)
这就是我使用它的方式:
{% prism cpp %}
#include <iostream>
// Hello World
int main()
{
cout << "hello world" << endl;
int a = 10;
}
{% endprism %}
现在,问题是,我主要在我的网站上使用 C++ 代码。当我现在使用 Jekyll 生成此降价时,之后的所有文本{% endprism %}
仍将在<pre>
标记内,因为<iostream>
如果我转义它,Kramdown 会感到困惑,(\<iostream\>
),然后我的插件按预期工作,但我的 Javascript 荧光笔变得混乱。
如果不启用 Jekyll 的荧光笔,我该如何解决这种情况?