使用 Maven 渲染轻量级标记语言
我想从 轻量级标记语言(例如 Markdown 或 Textile)以 html 形式呈现项目文档。做到这一点最简单的方法是什么?
I would like to render project documentation in html from a lighweight markup language like markdown or textile. What's easiest way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以通过 maven-site-plugin 使用其他轻量级标记语言。这是通过 doxia (maven 的内容生成框架)完成的。有一个用于 Markdown 的 doxia 模块,例如:
http://code。 google.com/p/doxia-module-markdown/wiki/用法
You can also use other lightweight markup languages with the maven-site-plugin. This is done through doxia (maven's content generation framework). There is a doxia module for markdown, for example:
http://code.google.com/p/doxia-module-markdown/wiki/Usage
maven 站点插件能够呈现 APT 格式(“几乎纯文本”)来为项目(文档)站点构建 html。
@参见:
http://maven.apache.org/ plugins/maven-site-plugin/examples/creating-content.html
http://maven.apache.org/doxia/references/apt-format.html
The maven site plugin is able to render the APT format ("Almost Plain Text") to build html for the project (documentation) site.
@See:
http://maven.apache.org/plugins/maven-site-plugin/examples/creating-content.html
http://maven.apache.org/doxia/references/apt-format.html