有没有办法使用markdown和google-code-prettify库一起使用来为我的代码做好准备?
我一直在使用
``` var s ="你好世界!&#34 ;; ```
产生< pre>< code> < /代码>< /预> HTML标记。但我无法将prettyprint类添加到它。
我也尝试过使用基本的html标记
< pre class =" prettyprint">< code> var s ="你好世界!&#34 ;; < /代码>< /预>
但是postach.io似乎删除了pre和code html标签。
答案 0 :(得分:0)
我设法通过使用postach.io的源编辑器将以下行添加到html模板的 head 部分来使其工作
<script type='text/javascript'>
window.exports = {
activate : function (a,b,c) {
$("pre").addClass("prettyprint linenums");
PR.prettyPrint();
}
}
</script>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?autoload=true&callback=activate"></script>
我的降价代码是
´´´ var s = "hello world!"; ´´´