plcopen/yslt_noindent.yml2
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Wed, 26 Sep 2018 18:08:57 +0300
changeset 2347 6dca42cd2b2b
parent 1936 b85b13b1c2ec
permissions -rw-r--r--
Add custom dialog to add/edit comment block in graphical editors

That allows to edit comment and immediately see how it'll be shown on wiresheet.
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;
    };
}