我正在寻找一个用于渲染markdown文件的 java 库,它支持github markdown 语法。
具体来说,我需要它支持 github 的代码块样式(标准降价中不支持):
```javascript
alert("hello world")
```
我正在寻找一个用于渲染markdown文件的 java 库,它支持github markdown 语法。
具体来说,我需要它支持 github 的代码块样式(标准降价中不支持):
```javascript
alert("hello world")
```
您可能会查看https://github.com/sirthias/pegdown,它似乎对 GitHub 风格有一些支持 - 包括代码块。
我最终在我的项目https://github.com/greenlaw110/rythm-website中选择了https://code.google.com/p/markdown4j/ ,该项目运行在http://rythmengine.org/
https://github.com/rjeschke/txtmark好用,最近好像在积极开发。它支持对原始 Markdown 语言的许多扩展——比如代码块。