0

有没有办法使用 markdown 和 google-code-prettify 库一起使用来美化我的代码?

我一直在使用

``` var s = "你好世界!"; ```

它产生 <pre><code> </code></pre> HTML 标记。但我无法向其添加 prettyprint 类。

我也尝试过使用基本的 html 标记

<pre class="prettyprint"><code> var s = "hello world!"; </code></pre>

但 postach.io 似乎删除了 pre 和 code html 标签。

4

1 回答 1

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!";  ´´´
于 2014-07-22T22:39:22.067 回答