I'm using Eclipse to edit some DocBook documents in XML, and the auto-formatter does not a optimal job on handling end-of-tags not followed by spacing. As an example, if I write:
<para><emphasis>Hello</emphasis>, World!</para>
In the source document, after auto-format I get:
<para>
<emphasis>Hello</emphasis>
, World!
</para>
The problem here is that when building the output, that adds a space between "Hello" and the following comma, output something like "Hello , World!".
I did not see any parameter to handle that in the editor XML formatting configuration... Is there a way to handle this gracefully?