mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
18 lines
338 B
XML
18 lines
338 B
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
|
|
<xsl:template pattern="doc">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>A Document</TITLE>
|
|
</HEAD>
|
|
<BODY>
|
|
<xsl:process-children/>
|
|
</BODY>
|
|
</HTML>
|
|
</xsl:template>
|
|
|
|
<xsl:template pattern="title">
|
|
<H1>
|
|
<xsl:process-children/>
|
|
</H1>
|
|
</xsl:template>
|
|
</xsl:stylesheet> |