Text Variable (Multiline)
Inserts the text value provided when expanding the snippet.
It allows you to insert multiline text.
Parameters
1️⃣ Field Title
The title of the field. It appears on the form when you expand the snippet.
This value can be used by Text Variable Reference placeholder.
If you copy-paste the same placeholder with the same title and parameters, it will automatically reuse the same value. When you change placeholder in one place it will be updated in all other places.
2️⃣ Default Value (optional)
The default value that will be used if you don't provide a value when expanding the snippet. The default value can be multiline.
When the placeholder is generated, new lines are replaced with \n
.
Syntax
{@multiline-text|Fruits|Apple\nOrange\nBanana@}
The default value can be omitted:
{@multiline-text|Fruits@}
Use Cases
This placeholder is useful to parametrize your snippets with text values that you need to change each time you use the snippet.
Example
Dear Team,
Tasks for today:
{@multiline-text|Tasks|Task 1\nTask 2\nTask 3@}
Best regards,
Manager