是否有转换wikitext数据转换为Java应用程序中的简单XML?
输入示例:
== A section ==
this is some text...
{{MyTemplate
|attr1=some value
|attr2=some other value
...
输出示例:
<section title= A section >this is some text...</section>
<ValueDescription attr1= some value attr2= some other value ...>
这似乎是一项琐碎的任务,但我找不到一个用Java做这件事的库。
Mulone