Problem:
I have an xsd schema with documentation included, for example:
<xs:element name="Tag" type="XTag">
<xs:annotation>
<xs:documentation>
Do like this:
- foo
- bar
</xs:documentation>
</xs:annotation>
</xs:element>
When I look at the documentation in Eclipse, white spaces are truncated to a single space, so I get:
Do like this: - foo - bar
This naturally limits readability when the documentation is more than a small note. For example, in javadoc, you can create html tags to format documentation
Question:
Is there a way to format the documentation, at least by simply adding new lines?
Some information:
I do everything in Eclipse. The XSD record I am adding to preferences -> XML -> XML catalog, so I can get content support and view the documentation in an XML editor.
, , Eclipse . , eclipse, :)