[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
Re: [xml-dev] are the regular expressions over xml structure?
- From: Andrew Welch <andrew.j.welch@gmail.com>
- To: Oleg Parashchenko <olpa@uucode.com>
- 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]