【发布时间】:2012-09-20 03:22:02
【问题描述】:
在 tumblr 中,支持降价。 我尝试在我的 tumblr 中添加语法高亮(highlight.js),但遇到了一些问题。
highlight.js 需要在 HTML 代码标签中添加一个 class 属性。
我尝试在我的 tumblr 上写一篇这样的文章:
<pre class="test">
<code class="html">
function A(){ return "hello world"; }
</code>
</pre>
实际页面中的结果:
<pre>
<code>
function A(){ return "hello world"; }
</code>
</pre>
class属性不见了…… 是否可以在 Markdown 中添加 HTML 属性?
【问题讨论】:
标签: html syntax-highlighting markdown tumblr