xsl-list
[Top] [All Lists]

[xsl] match="*:style"

2009-05-20 09:35:35
Dear Community

I process HTML/XHTML files passed as input to my XSLT stylesheet. I'm
working with SaxonB 9.1.0.2.
In order to catch the <style/> tag in the HTML/XHTML input file I defined
the following match-rule. 

<xsl:template match="*:style[empty(./*) and normalize-space(./text()) eq
'']">
  <xsl:element name="{node-name(current())}"
namespace="{namespace-uri(current())}">
    <xsl:apply-templates select="@*"/>
      <xslo:value-of select="' '"/>
  </xsl:element>
</xsl:template>

Now I am surprised that above match applies also to style-attributes (i.e.
style="border: 1px solid red;").
I can imagine that this is caused by the star in the match.
I used the star to mask the namespace-prefix in order match style-tags in
the null and in the XHTML namespace (without prefix). 

Can anybody please explain me why this happens? 

Many thanks in advance
Raffaele Merico


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>