1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-14 05:09:26 +03:00
Files
libxslt/tests/general/bug-155.xsl
Daniel Veillard 980a02c4f7 added a test case provided by Markus Bertheau breaking on libxml2-2.6.15
* tests/general/bug-155.*, tests/general/Makefile.am,
  tests/docs/bug-155*, tests/docs/Makefile.am: added a test case
  provided by Markus Bertheau breaking on libxml2-2.6.15
Daniel
2004-11-01 14:58:20 +00:00

11 lines
400 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>
<xsl:template match="object[@class='Literaturhinweis']"><h3>Literaturhinweis</h3>
<ul>
<li><strong>Ältestenrat:</strong><xsl:value-of select="Ältestenrat"/></li>
</ul>
</xsl:template>
</xsl:stylesheet>