[Home] [By Thread] [By Date] [Recent Entries]

  • From: Andrew Welch <andrew.j.welch@g...>
  • To: Oleg Parashchenko <olpa@u...>
  • Date: Mon, 2 Jul 2012 14:57:58 +0100

> Unfortunately, this code is not enough. Imagine a mostly identity
> transform with such grouping. What to do with the elements "caption"
> and "table"?

In an identity transform situation, have no-op templates for caption
and table, with suitable predicates eg

<xsl:template match="caption[preceding-sibling::*[1][self::image]"/>

and then the usual way to handle them from the image template is with a mode:

<xsl:template match="image[following-sibling::*[1][self::caption]] .... ">
    (output the image markup)
    <xsl:apply-templates
select="following-sibling::*[1][self::caption]" mode="image-caption"/>

with

<xsl:template match="caption" mode="image-caption">
  ...
</


-- 
Andrew Welch
http://andrewjwelch.com


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member