Mercurial > hg > Aquinas
view english_prep.xsl @ 110:8c90b527af0e
finished?
| author | ht |
|---|---|
| date | Sat, 30 Jun 2018 13:48:08 +0000 |
| parents | d3a06d7753d9 |
| children |
line wrap: on
line source
<?xml version='1.0'?> <!DOCTYPE doc SYSTEM "../../../../lib/xml/xsl.dtd" > <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output doctype-system="../../dtd/ThML10.dtd"/> <xsl:template match="/"> <xsl:text> </xsl:text> <xsl:processing-instruction name="xml-stylesheet">type="text/xsl" href="bi.xsl"</xsl:processing-instruction> <xsl:apply-templates select="node()"/> </xsl:template> <xsl:template match="p[text()]"> <div class="bilingual"> <xsl:text> </xsl:text> <xsl:copy> <xsl:attribute name="xml:lang">en</xsl:attribute> <xsl:apply-templates select="@*|node()"/> </xsl:copy> <xsl:text> </xsl:text> </div> </xsl:template> <xsl:template match="p"/> <xsl:template match="h1|h2|h3|h4|h5"> <xsl:copy> <xsl:attribute name="xml:lang">en</xsl:attribute> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> </xsl:stylesheet>
