2

有什么方法可以使用 markdown 插件 gfm 调整JSDoc突出显示github makrdown 语法?

例子

例如这里是原始突出显示:

https://github.com/darlingjs/darlingjs

和 gfm (不突出显示)结果:

http://darlingjs.github.io/docs/index.html

顺便说一句 jsdoc 有prettyprint

4

1 回答 1

1

我能够使用 prettyprint 在我的 markdown 教程中添加语法高亮。这不是 GFM,但总比没有好:)

我刚刚更改了代码部分:

``` javascript
// ...
// js code
// ...
```

至:

<pre class="prettyprint">
// ...
// js code
// ...
</pre>
于 2014-08-19T16:55:22.957 回答