xsltproc (XSL transformations)
xsltproc is the best (most efficient) way I’ve found to do XSL transformations. Some of the DLL dependencies have to be from libraries downloaded at the xsltproc web site (or rather, the web site of the associated libraries).
xsltproc ocm.xsl newOcm.xml > result.txt
xsltproc --param which-page 1 -o output.svg xml2svg.xsl nasim.xml
xsltproc --param which-page "hello world" -o output.svg xml2svg.xsl nasim.xml
Advertisement