Does anyone know of a free alternative to the built in Eclipse XML editor?
The one that is packaged with the IDE has 2 major problems with formatting that my team and I have discovered when formatting:
- The formatter tries to parse escaped char's as though they were unescaped. e.g. ' & l t ;' is treated like '<' which causes the formatter to "stop" (note there isn't really white space between the chars)
- White space between elements is not honored. ex:
<foo> text </foo>
will be formatted to:
<foo>text</foo>
We are using Eclipse 3.4
Thanks in advance.
[[EDIT #1: Issue #1 is a known bug found here: Formatting issues with entities in XML files]]
[[EDIT #2: Apparently the white space formatting is intended functionality. See here. I have requested this be provided as an option or advise on fixing this in a plugin of my own, but as of yet, no answer.]]