Google wiki 到 Eclipse 的帮助转换可能吗?哪些工具?

发布于 2024-10-29 02:40:55 字数 178 浏览 4 评论 0 原文

有没有办法从 Google wiki 页面生成 Eclipse 帮助文件,因为可以通过 mylin wikitext 插件从 twiki 或 mediawiki 页面生成此类文件?

或者是否有转换器可将 google wiki 文件转换为 mediawiki 或 twiki 格式?

希望得到帮助, 奥姆纳斯特

is there a way to generate Eclipse help files from Google wiki pages as it is possible to generate such ones from twiki or mediawiki pages via the mylin wikitext plugin?

Or are there converter available to bring google wiki files into mediawiki or twiki format?

In hope for help,
omnaest

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话墙 2024-11-05 02:40:55

既然似乎任何人都有想法,我创建了一个自己的 ant 任务来进行文本文件转换。

如果对将纺织品页面转换为谷歌维基页面的示例感兴趣,您可以查看
ant 脚本示例

是用于将纺织页面转换为 html 和 google wiki 然后进行部署的 ant 任务。

buid.xml 的重要 ant 目标是“convertWikiFolder”,它看起来像:

<target name="convertWikiFolder" depends="dircopyWikiFolder">
  <echo message="Converting textile files for wiki folder."/>
  <textFileContentConverter fileNameSource="${folderWikiTarget}" fileNameRegexFilter="(.*)\.textile$" fileNameReplacement="$1.wiki" fileNameRegexFilterAndReplacementPatterns="regexFilterFromTextileToGoogleWiki.xml" deleteSourceFileAfterConversion="true"/>
</target>

它使用“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:

<target name="convertWikiFolder" depends="dircopyWikiFolder">
  <echo message="Converting textile files for wiki folder."/>
  <textFileContentConverter fileNameSource="${folderWikiTarget}" fileNameRegexFilter="(.*)\.textile$" fileNameReplacement="$1.wiki" fileNameRegexFilterAndReplacementPatterns="regexFilterFromTextileToGoogleWiki.xml" deleteSourceFileAfterConversion="true"/>
</target>

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"

未蓝澄海的烟 2024-11-05 02:40:55

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文