Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I have a strange problem with xslt... it is showing the html-tags from a texteditor.
Fx: <p>Hallo<br /><br /><strong>More text</strong></p>
In the XSLT I have a value-of to display the content...
How can I solve this?
you need to use disable-output-escaping like so:
<xsl:value-of select="./data[$bodyText]" disable-output-escaping="yes" />
Yes! That was it.
I have seen that code before, but now I know what it does. Thank you
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
XSLT writes p-tags
Hi,
I have a strange problem with xslt... it is showing the html-tags from a texteditor.
Fx: <p>Hallo<br /><br /><strong>More text</strong></p>
In the XSLT I have a value-of to display the content...
How can I solve this?
you need to use disable-output-escaping like so:
Yes! That was it.
I have seen that code before, but now I know what it does. Thank you
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.