2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tools / monodoc / Resources / mdoc-html-format.xsl
blob10acd9c3b6a520bde3c8361a8e7ca201038c0eb0
1 <?xml version="1.0"?>
3 <!--
4 mdoc-html-format.xsl: HTML pass-through formatting support
6 Author: Jonathan Pryor (jpryor@novell.com)
8 -->
10 <xsl:stylesheet
11 version="1.0"
12 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
15 <!-- pass-through any other elements unchanged - they may be HTML -->
16 <xsl:template match="//format[@type='text/html']//*">
17 <xsl:copy>
18 <xsl:copy-of select="@*" />
19 <xsl:apply-templates select="*|node()" />
20 </xsl:copy>
21 </xsl:template>
23 </xsl:stylesheet>