Google wiki 到 Eclipse 的帮助转换可能吗?哪些工具?
有没有办法从 Google wiki 页面生成 Eclipse 帮助文件,因为可以通过 mylin wikitext 插件从 twiki 或 mediawiki 页面生成此类文件?
或者是否有转换器可将 google wiki 文件转换为 mediawiki 或 twiki 格式?
希望得到帮助, 奥姆纳斯特
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
既然似乎任何人都有想法,我创建了一个自己的 ant 任务来进行文本文件转换。
如果对将纺织品页面转换为谷歌维基页面的示例感兴趣,您可以查看
ant 脚本示例
是用于将纺织页面转换为 html 和 google wiki 然后进行部署的 ant 任务。
buid.xml 的重要 ant 目标是“convertWikiFolder”,它看起来像:
它使用“regexFilterFromTextileToGoogleWiki.xml”来定义转换不同 wiki/文本语法的正则表达式。
要转换其他 wiki 语法文件,必须调整此正则表达式文件。
相关的 ant 任务二进制文件位于“bin/TextFileContentConverter-0.0.1-SNAPSHOT-jar-with-dependency.jar”下
Since it seems that anyone has an idea, I created an own ant task for text file conversion.
If there is interest in an example of converting textile pages into google wiki pages you can look at
ant script example
There is the ant task used to convert textile pages into html and google wiki and then to deploy.
The important ant target of the buid.xml is "convertWikiFolder" and it looks like:
It uses the "regexFilterFromTextileToGoogleWiki.xml" to define regular expressions which translates the different wiki/text syntax.
To convert other wiki syntax files this regex file has to be adapted.
The related ant task binary is located under "bin/TextFileContentConverter-0.0.1-SNAPSHOT-jar-with-dependencies.jar"
Mylyn WikiText 不直接支持 Google wiki 页面。
对于 MediaWiki,请查看 Eclipse 文档 MediaWiki To Eclipse Help 它提供了一个 Ant 任务,用于从 MediaWiki 生成 Eclipse 帮助。 DocumentationGuidelines/CrowdSourcingExample 还提供了如何完成此操作的具体示例。
Google wiki pages aren't directly supported by Mylyn WikiText.
For MediaWiki take a look at the Eclipse documentation on MediaWiki To Eclipse Help which provides an Ant task for generating Eclipse Help from a MediaWiki. Also DocumentationGuidelines/CrowdSourcingExample provides a concrete example of how this can be done.