beremiz
Clone
Summary
Browse
Changes
Graph
Fix wrong ST code generation in case of several coils connected to each other.
2018-08-10, Andrey Skvortsov
068ccc02f5f2
Fix wrong ST code generation in case of several coils connected to each other.
For example,
|---|Var0|----(Var1)--(Var2)---|
Closes #32
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;
};
}