[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Daisy chaining XSLT and also how can I check wheth
On Wed, 2024-08-07 at 21:09 +0000, ohaya ohaya@xxxxxxxxx wrote: > > Also, now that I think I/we've gotten past the existence of the node- > set() function, I am going to start trying to implement/test the > chaining, so I think it'd be better to start a new thread for that. The usual approach in XSLT 1 is to use modes. Make sure to keep all templates with a given mode together - e.g. in a separate file you include, if possible - and always pass the mode to apply-templates <xsl:apply-templates select="exslt:node-set($first-pass-result)" mode="fix-pyjamas" /> and, maybe in fix-pyjamas.xsl, <xsl:template mode="fix-pyjamas" match="missing-button"> B <button> B B <xsl:apply-templates mode="fix-pyjamas" /> B </button> </xsl:template> liam -- Liam Quin,B https://www.delightfulcomputing.com/ Available for XML/Document/Information Architecture/XSLT/ XSL/XQuery/Web/Text Processing/A11Y training, work & consulting. Barefoot Web-slave, antique illustrations: B http://www.fromoldbooks.org
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|