mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
* configure.in: trying to kill #77827 IEEE conformance on alphas * libxslt/imports.c libxslt/transform.c libxslt/xslt.c: fixing bug #78211 * tests/docs/Makefile.am tests/docs/bug-82.xml tests/general/Makefile.am tests/general/bug-82.*: added a specific example for bug #78211 in the regression tests Daniel
13 lines
279 B
XML
13 lines
279 B
XML
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
<xsl:preserve-space elements="*"/>
|
|
<xsl:strip-space elements="child"/>
|
|
|
|
<xsl:template match="*">
|
|
<xsl:text>(</xsl:text><xsl:apply-templates/><xsl:text>)</xsl:text>
|
|
</xsl:template>
|
|
</xsl:transform>
|
|
|
|
|
|
|