有没有办法使用 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 标签。