1

我正在使用nodejs express构建一个可以通过markdown编写的博客,如何添加代码荧光笔?

我尝试使用 syntaxhighlighter.js 来完成它,但它无法正常工作。因为它需要像这样写“ <pre class="bruse:css">code here..</pre>。但是marked.js输出像这样<pre><code>code here...</code></pre>”。

所以有人知道如何实现这个吗?

4

1 回答 1

0

查看 Codemirror 的 Markdown 模式 http://codemirror.net/mode/markdown/ 比如:

$('pre code').each(function() {

var $this = $(this),
    $code = $this.html();

$this.empty();

var myCodeMirror = CodeMirror(this, {
    value: $code,
    mode: 'markdown',
    readOnly: true
});

});
于 2013-05-05T14:39:32.687 回答