DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Reference

In the following, only the XML attributes "id", "ref", "result" are reserved words. You may use any name for other attributes, the name has no specific interpretation in the code. Only the order and the value are important. However, it is a good practice to use names that make sense.

The reference attribute has a special syntax: ref = "tagName#id", where "tagName" can be any XML tag.

"Default Method" means that if an object is used without any other tags, this method will be applied. Example :

<data id = "myData">
  5,6,7
</data>

gives the same result as:

<data id = "myData">
  <setData value = "5,6,7" />
</data>