问题:
我有一个包含文档的 xsd 架构,例如:
<xs:element name="Tag" type="XTag">
<xs:annotation>
<xs:documentation>
Do like this:
- foo
- bar
</xs:documentation>
</xs:annotation>
</xs:element>
当我在 Eclipse 中查看文档时,空白被截断为一个空格,所以我最终得到:
Do like this: - foo - bar
当文档不仅仅是一点注释时,这自然会限制可读性。例如,在 javadoc 中,可以使用一个 html 标签来格式化文档
问题:
有没有办法格式化文档,至少只是添加换行符?
一些细节:
我在 Eclipse 中做所有事情。我编写的 XSD 已添加到 中preferences -> XML -> XML catalog
,因此我可以在 XML 编辑器中获得内容帮助和查看文档。
它是一个内部工具,唯一可以预见的查看文档的地方是通过 Eclipse 以上述方式。所以如果它在eclipse中工作,那就足够了:)