Hi, I don't know if it's possible or if someone as done that, but I'd like to insert raw html into an xslt and I want that xslt to interpret it.
So, I created a doctype with a multiline textbox in which a entered the html.
Then, in my xslt I call that node and its rawHtml. But instead of interpreting the html code, it displays it. So I see <a href="blabla">link</a> instead of a link.
Insert html in xslt from a doctype
Hi, I don't know if it's possible or if someone as done that, but I'd like to insert raw html into an xslt and I want that xslt to interpret it.
So, I created a doctype with a multiline textbox in which a entered the html.
Then, in my xslt I call that node and its rawHtml. But instead of interpreting the html code, it displays it. So I see <a href="blabla">link</a> instead of a link.
Am I understandable?
Hi Profiterole,
You'll need to add the "disable-output-escaping" attribute to the value-of:
Change the "select" XPath expression to use the correct data.
Cheers, Lee.
Yeah, thank you... newb error!
No problem, been there myself! Happy to help.
Cheers, Lee.
is working on a reply...