This repository has been archived on 2026-07-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
moreWiki/More Wiki in a jar/public/skins/default/wiki/show-article.xsl
T
2012-01-08 15:18:29 +01:00

14 lines
383 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="show-article">
<h1>
<xsl:value-of select="normalize-space(/page/article/id)" />
</h1>
<!-- just copy everything as it is expected to be HTML -->
<xsl:copy-of select="content/*" />
</xsl:template>
</xsl:stylesheet>