This is related to my previous question -" Manipulate the output of <xsl:apply-templates>".
I want to ask about the specific problem I am looking to address.
How do I replace quotes in ...
I'm using Saxon 9 to analyze invalid html sources. Specifically the html has href values like the following:
<a href="blah.asp?fn=view&g_varID=1234">some text</a>
I'm getting errors:
"Error reported by XML parser: The reference to entity "g_varID" ...
I transform XML to (sort of) HTML with XSL stylesheets (using Apache Xalan). In XML there can be entities like —, which must be left as is. In beginning of XML ...
This question about web page 'inclusion' triggered my curiosity. The XML allows you to specify a reference to an 'external' portion. Can you do the same in XHTML, ...
I have some XMLs that contain character hex codes, e.g. it like this:
<char hex="AB"/>
Now I want to xslt transform for display in the browser:
<xsl:value-of select="concat('&#x', /char/@hex, ';', '')"/>
However, the output in ...
I have external script result in my XSL template, contains escaped html special characters. How I can unescape it with XSLT and output it to final document?
I have already escaped result, ...