...
Option key | Description | Example of usage |
---|---|---|
:lowercase | Convert all characters to lowercase before being used | {=Username:lowercase } |
:uppercase | Convert all characters uppercase before being used | {=Username:uppercase } |
:capitalizefirst | Convert the first character uppercase before being used. This does not convert the other characters lowercase. Combine with :lowercase to make only the first character in uppercase. | {=Username:capitalizefirst} {=Username:lowercase:capitalizefirst} |
:htmlencode | Encodes the values to a valid HTML representation, replacing any characters that would otherwise be interpreted as HTML tags. | {=Username:htmlencode } |
:urlencode | Encodes the values to a valid URL representation that can be used a in query strings etc. | {=Username:urlencode } |
:htmlnbsp | Converts all spaces to to prevent unwanted line breaks in HTML based user interfaces. Is only used when a web based UI is calling the placeholder feature. | {=Username:htmlnbsp } |
...