Given an XSLT 1.x stylesheet that requires parameters, is there a way to link it to an XML document that sets parameter values? I read the W3C specification document for the PI stylesheet and got the impression that the answer is no, but by the time I was done I had a case of acute BNF poisoning and maybe he missed something.
More specifically, given:
<?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?>
Is there a way to add some parameters that will be bound to the stylesheet parameters?
source
share