github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/REC/test-7.1.1.xsl (about) 1 <xsl:stylesheet 2 version="1.0" 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 4 xmlns:fo="http://www.w3.org/1999/XSL/Format" 5 xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias"> 6 7 <xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/> 8 9 <xsl:template match="/"> 10 <axsl:stylesheet> 11 <xsl:apply-templates/> 12 </axsl:stylesheet> 13 </xsl:template> 14 15 <xsl:template match="block"> 16 <axsl:template match="{.}"> 17 <fo:block><axsl:apply-templates/></fo:block> 18 </axsl:template> 19 </xsl:template> 20 21 </xsl:stylesheet>