mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
* 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
11 lines
400 B
XML
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>
|
|
|