Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

In this document, you will learn how to use Mustache Template.

Mustache is a logicless template used for creating Dynamic content

Mustache Tag:

Mustache tags are denoted by double curly braces surrounding the tag key.

Example:

{{ msg.sample }} - Here msg.sample is the tag key.

Mustache Template:

The mustache template is a string that contains any number of mustache tags

The tag could be used as a placeholder and it will be replaced with the value during the run time. This will help to render dynamic values.

Example:

In the above example, the value stored in the msg.sample will be evaluated in the runtime.

Using URL or links in Mustache:

All the mustache tags are HTML escaped by default.

So If we don't want it to be HTML escaped, we might need to use “triple stash” or “&” like {{{ expression }}} or {{ &expression }}

This would be helpful when sending links through SMS or Email.

Example:

In the above example, the value in msg.sampleLink will be parsed.

  • No labels