> currently, due to different naming conventions for variables,
> modxslt variables are only accessible using modxslt extensions.
Oh! That makes sense.
> Take a look to mod-xslt2 extensions for more details. Something
> like:
> <xsl:stylesheet version="1.0"
> extension-element-prefixes="yaslt"
> xmlns:yaslt="http://www.mod-xslt2.com/ns/1.0"
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
> [...]
>
> <yaslt:value-of select="$MODXSLT[variable]" />
>
> may just do what you need :)
Yes, I did play with those so it should do exactly what I need. Thanks.