Skip to content
This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Commit c27d190

Browse files
committed
html5-uppercase not uppercase
1 parent 0916fde commit c27d190

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

2007/entitynamesmap.xsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
<xsl:import href="html5-uppercasemap.xsl"/>
4848
<xsl:import href="predefinedmap.xsl"/>
4949

50-
<xsl:character-map name="w3c-entity-names" use-character-maps=" isobox isocyr1 isocyr2 isodia isolat1 isolat2 isonum isopub isoamsa isoamsb isoamsc isoamsn isoamso isoamsr isogrk1 isogrk2 isogrk3 isogrk4 isomfrk isomopf isomscr isotech mmlextra mmlalias xhtml1-lat1 xhtml1-special xhtml1-symbol uppercase predefined"/>
50+
<xsl:character-map name="w3c-entity-names" use-character-maps=" isobox isocyr1 isocyr2 isodia isolat1 isolat2 isonum isopub isoamsa isoamsb isoamsc isoamsn isoamso isoamsr isogrk1 isogrk2 isogrk3 isogrk4 isomfrk isomopf isomscr isotech mmlextra mmlalias xhtml1-lat1 xhtml1-special xhtml1-symbol html5-uppercase predefined"/>
5151

5252
</xsl:stylesheet>

2007/htmlmathml.xsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
<xsl:import href="html5-uppercasemap.xsl"/>
4545
<xsl:import href="predefinedmap.xsl"/>
4646

47-
<xsl:character-map name="htmlmathml" use-character-maps=" isobox isocyr1 isocyr2 isodia isolat1 isolat2 isonum isopub isoamsa isoamsb isoamsc isoamsn isoamso isoamsr isogrk3 isomfrk isomopf isomscr isotech mmlextra mmlalias xhtml1-lat1 xhtml1-special xhtml1-symbol uppercase predefined"/>
47+
<xsl:character-map name="htmlmathml" use-character-maps=" isobox isocyr1 isocyr2 isodia isolat1 isolat2 isonum isopub isoamsa isoamsb isoamsc isoamsn isoamso isoamsr isogrk3 isomfrk isomopf isomscr isotech mmlextra mmlalias xhtml1-lat1 xhtml1-special xhtml1-symbol html5-uppercase predefined"/>
4848

4949
</xsl:stylesheet>

charmap.xsl

+2
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@
152152
<xsl:choose>
153153
<xsl:when test="starts-with(@name,'957')"><xsl:value-of select="substring(@name,11)"/></xsl:when>
154154
<xsl:when test="starts-with(@name,'88')"><xsl:value-of select="substring-after(@name,'-')"/></xsl:when>
155+
<xsl:when test="@name='html5-uppercase'"><xsl:value-of select="@name"/></xsl:when>
155156
<xsl:when test="starts-with(@name,'html')"><xsl:value-of select="substring-after(@name,'-')"/></xsl:when>
156157
<xsl:otherwise><xsl:value-of select="@name"/></xsl:otherwise>
157158
</xsl:choose>
@@ -201,6 +202,7 @@
201202
<xsl:choose>
202203
<xsl:when test="starts-with(@name,'957')"><xsl:value-of select="substring(@name,11)"/></xsl:when>
203204
<xsl:when test="starts-with(@name,'88')"><xsl:value-of select="substring-after(@name,'-')"/></xsl:when>
205+
<xsl:when test="@name='html5-uppercase'"><xsl:value-of select="@name"/></xsl:when>
204206
<xsl:when test="starts-with(@name,'html')"><xsl:value-of select="substring-after(@name,'-')"/></xsl:when>
205207
<xsl:otherwise><xsl:value-of select="@name"/></xsl:otherwise>
206208
</xsl:choose>

0 commit comments

Comments
 (0)