xsl-list
[Top] [All Lists]

[xsl] XPath function for <xsl:apply-templates/>?

2013-11-18 08:11:59
Hi,
might have been asked here before but is there some XPath function that works 
like <xsl:apply-templates/>?
This would be good for readability. I’ll give you an example, currently I do 
this:

                        <xsl:variable name="content">
                            <xsl:apply-templates mode="filter"/>
                        </xsl:variable>
                        <xsl:copy-of select="a18:field('place', $content)“/>

What I’am asking for would look like this:

                        <xsl:copy-of select="a18:field('place', 
apply-templates('filter'))“/>


Any thoughts?
There is probably an extension for this.

Best,
Christian
--~------------------------------------------------------------------
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>
--~--