In general I like the way the XML editor will format a document with each start tag on it’s own line. Working with DocBook, their are a few cases when this presents a problem.
So Is their a way to specify XML tag specific formatting rules?
As an example, I do not want a new line before and after the <emphasis> tag so the formatted document will look like the following:
<para>
The next string of letters emphasizes only vowels.
<emphasis>A</emphasis>bcd<emphasis>e</emphasis>fg.
</para>
The current behavior results in the following which add spaces after each vowel in the generated PDF
<para>
The next string of letters emphasizes only vowels.
<emphasis>A</emphasis>
bcd
<emphasis>e</emphasis>
fg.
</para>