plcopen/yslt_noindent.yml2
author Edouard Tisserant <edouard.tisserant@gmail.com>
Fri, 13 Apr 2018 00:29:52 +0200 (2018-04-12)
changeset 1987 8d1aca3c9e83
parent 1936 b85b13b1c2ec
permissions -rw-r--r--
Fixed implementation of runtime worker that ensure that PLCObject Load and Unload methods always run main thread.
include yslt.yml2

in xsl {
    decl istylesheet (
        *output="xml",
        version="1.0",
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform",
        xmlns:exsl='http://exslt.org/common',
        extension-element-prefixes='exsl'
    ) alias stylesheet {
        output *output;
        content;
    };

    decl template(match) {
        content;
    };

    decl function(name) alias template {
        content;
    };
   
    decl call(name) alias call-template {
        content;
    };

    decl apply(select) alias apply-templates {
        content;
    };
}