mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-11 16:10:45 +03:00
* tests/docs/Makefile.am tests/docs/bug-109.xml tests/general/Makefile.am tests/general/bug-109*: added an example in the regression tests for the invalid bug #108716 Daniel
8 lines
319 B
XML
8 lines
319 B
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:output method="html" indent="yes" encoding="iso-8859-1"/>
|
|
<xsl:template match="/*">
|
|
<xsl:value-of select="text()" disable-output-escaping="yes"/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|