xslt 1.0 - Unable to Successfully Pass Parameters to xsl:call-template -
i have generic template i've designed 2 params title , category . <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/xsl/transform" xmlns:fo="http://www.w3.org/1999/xsl/format"> <xsl:param name="category" /> <xsl:param name="title" /> <xsl:template name="test-group"> <fo:block> <xsl:value=of select="$title" /> </fo:block> <fo:block> <xsl:value-of select="$category" /> </fo:block> </xsl:template> </xsl:stylesheet> in parent template have following: <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/xsl/transform" xmlns:fo="http://www.w...