{{textarea}}

textarea Properties

Allows any input, but encodes it as text prior to displaying it.

Field Type Description
object_type string Will always be "textarea".
is_valid True|False True if the value is not empty.
value string The raw unencoded value of the field - outputting the raw value may have unexpected results if the value contains any HTML characters (ie: <, >, ', or ").
output html The html encoded text of the field. Line breaks in the textarea are converted to "<br />" tags.
output_in_list html Same as output.
field_id string The identifier for this field.
default_value string The default value for this field if no value is specified.

Examples

Entity Textarea

Copy
{% if entity.hero_description.is_valid %}

{{ entity.hero_description }}

{% endif %}