Display Text Block Settings

Configure settings for the Display Text block.

Add Text

In the message configuration, add the text that will displayed to the user. You can call variables in the text by added double curly braces around your variable name. Example: {{text}}.

Note that the text will display to the user exactly as it is written in the message field.

Display Block Syntax

Responses will be displayed to the user exactly as it is written. You may also call {{variables}} that you’d like to display to the user. Here are some syntax examples to display variables in different ways.

Display an image:

![]({{myVariable}})

Display the audio player:

<audio src="{{myAudioVariable}}" controls /></audio> 

Conditional Formating:

{{#if myVariable}} 
So something with {{myVariable}}
{{else}}
Do something else
{{/if}}

Last updated