Formatting Functions

Formatting functions are used to format the content of the square bracket tags. They are placed within the square bracket WT tags and are preceeded with the pipe ( | ) character.

A list of formatting functions can be found Here.

An Example

[wt:name|capitalise]

This example will output the value of the 'name' attribute with the first letter capitalised.

 
Chaining Formatting Functions
 
The output of a formatting function can be sent to another formatting function
 
An Example:
 
[wt:name|capitalise|toLower]
This will first convert the value of name to upper case and then convert the uppercase result to lowercase and output the lowercase result.