I want to prevent IDEA to insert line breaks around certain elements, analogous to HTML formatting where certain elements (like <b>
) are kept inline.
I have an XML dialect with a DTD that declares mixed content.
DTD:
<!ELEMENT mixed (#PCDATA|inline)*>
<!ELEMENT inline #PCDATA>
XML file:
<mixed>
Some text with <inline>inline elements</inline>
and a line break.
</mixed>
When I reformat the XML file, IDEA transforms it to
<mixed>
Some text with
<inline>inline elements</inline>
and a line break.
</mixed>
I have looked at all the options on Code style->XML->Other. The "Keep whitespace" option is too restrictive, as I want IDEA to break long lines.
After trying many things, I'm getting the impression that this will not be possible. I've submitted a feature request:
http://youtrack.jetbrains.com/issue/IDEA-119650