X
Xtr
Hello,
Is it possible, using xsl, to indent most tags, but preserve the
position of tags that are inline (surrounded by text)?
For example, given the following,:
<text><p>text<b>text</b></p></text>
<text><p>text<b>text</b></p></text>
have it output like this:
<text>
<p>text<b>text</b></p>
</text>
<text>
<p>text<b>text</b></p>
</text>
Can this, for example, be done by using indent="yes" and using some
kind of exception for certain tags?
Thanks.
Is it possible, using xsl, to indent most tags, but preserve the
position of tags that are inline (surrounded by text)?
For example, given the following,:
<text><p>text<b>text</b></p></text>
<text><p>text<b>text</b></p></text>
have it output like this:
<text>
<p>text<b>text</b></p>
</text>
<text>
<p>text<b>text</b></p>
</text>
Can this, for example, be done by using indent="yes" and using some
kind of exception for certain tags?
Thanks.