mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xhtml="http://www.w3.org/1999/xhtml"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:template match="text()">
|
|
</xsl:template>
|
|
|
|
<xsl:template match="text()" mode="list">
|
|
</xsl:template>
|
|
|
|
<xsl:template match="text()" mode="text">
|
|
<xsl:value-of select="."/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="xhtml:script" mode="text">
|
|
</xsl:template>
|
|
|
|
<xsl:template match="xhtml:b|xhtml:i|xhtml:em|xhtml:strong" mode="text">
|
|
<xsl:copy><xsl:apply-templates mode="text"/></xsl:copy>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="xhtml:h1|xhtml:h2|xhtml:h3|xhtml:p">
|
|
<xsl:copy><xsl:apply-templates mode="text"/></xsl:copy>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="xhtml:li" mode="list">
|
|
<xsl:copy><xsl:apply-templates mode="text"/></xsl:copy>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="xhtml:ul|xhtml:ol">
|
|
<xsl:copy><xsl:apply-templates mode="list"/></xsl:copy>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="/">
|
|
<xhtml:body><xsl:apply-templates/></xhtml:body>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|