reveal.js 和 hilightjs - 如何阻止我的标签被自动关闭

reveal.js and hilightjs - how to stop my tags from being automatically closed

我正在使用 reveal.js

进行演示

我想在语法高亮的代码块中显示以下内容:

<foo>

所以在我的演示文稿中 html 我这样做:

<pre><code class="hljs" data-trim contenteditable>
<foo>
</code></pre>

这是显示的内容:

<foo>
</foo>

如何阻止我的标签为我关闭?

这个有效:

<pre><code class="hljs" data-trim contenteditable>
&ltfoo>
</code></pre>