-
Improvement
-
Resolution: Unresolved
-
Major
-
None
-
None
-
None
-
1 - Middle term
-
2 - Normal
- Currently we do things like (example from plugin Forms):
<xsl:template match="/*" priority="1000"> <article version="5.0"> <xsl:apply-templates select="p|div|ol|ul|table|*[starts-with(name(),'h') and string-length(name())=2 and string(number(substring(name(),2,1)))!='NaN'] | form" /> </article> </xsl:template>
To ensure that the template will effectively be overriden, we have to put a priority on the template, which is less than ideal.