You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the result of an XSLT stylesheet you can turn disable-output-escaping on (on <xsl:value-of.../>). Turning it on makes for instance > and < characters not to be serialized as > and < but as the characters themselves. This is useful if you have for instance a piece of XML in a string variable that you want serialized as XML, not as text.
However, serializing an XSLT result that uses this feature in an XProc pipeline does not retain this. Maybe we should do something about it.
The text was updated successfully, but these errors were encountered:
Yeah. You have to manage things a little more carefully. But disable-output-escaping can produce data models that can't be serialized. It exists now only for backwards compatibility reasons, processors aren't required to support it.
In the result of an XSLT stylesheet you can turn
disable-output-escaping
on (on<xsl:value-of.../>
). Turning it on makes for instance>
and<
characters not to be serialized as>
and<
but as the characters themselves. This is useful if you have for instance a piece of XML in a string variable that you want serialized as XML, not as text.However, serializing an XSLT result that uses this feature in an XProc pipeline does not retain this. Maybe we should do something about it.
The text was updated successfully, but these errors were encountered: