How do I solve such a problem:
I have a simple xsl transformation. When I apply it from command line like this
Code: Select all
xsltproc -o out.xml tidy.xsl doc.xml
Code: Select all
<guide>
<title>Title</title>
<subtitile>Subtitle</subtitle>
</guide>
And if I try to apply a similar transformation scenario with oXygen output document contains annoing indentation before each new level tag, like this
Code: Select all
<guide>
<title>Title</title>
<subtitile>Subtitle</subtitle>
</guide>
Thank you.