[runtime] Disable some tests in full-aot mode which cannot be AOTed because of type...
[mono.git] / mcs / class / monodoc / Resources / mdoc-html-format.xsl
1 <?xml version="1.0"?>
2
3 <!--
4         mdoc-html-format.xsl: HTML pass-through formatting support
5
6         Author: Jonathan Pryor (jpryor@novell.com)
7
8 -->
9
10 <xsl:stylesheet
11         version="1.0"
12         xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
13         >
14
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>
22
23 </xsl:stylesheet>
24