高洛峰2017-04-17 14:27:49
我用過一個函式庫,我不知道能幫你嗎
https://github.com/chjj/marked
我用這個庫做了簡單markdown閱讀器,可以自己下下來玩玩
https://github.com/hjzheng/markdown-reader
語法和程式碼高亮建議結合 https://github.com/google/code-prettify 一塊使用
這個我沒試過,但是 marked 會
例如下面的程式碼
用 ' 取代 ` 顯示
'''css
.class {
background: url(data:image/gif;base64,R0lGODl ... ) no-repeat left center;
}
'''
轉成了
<pre>
<code class="lang-css"> .class {
background: url(data:image/gif;base64,R0lGODl ... ) no-repeat left center;
}
</code>
</pre>
結合 code-prettify ,你只需要在 pre 元素上加上 class=“prettyprint”, 你可以在node中添加,也可以在html用js動態添加
PHP中文网2017-04-17 14:27:49
markdownJS
雷雷http://www.cnblogs.com/sanshi/archive/2011/03/16/1986468.html