Basics: Data Types: HTML
Content stored as HTML text, for example product description. Smart Tags allows you to use the content as raw HTML as it is, or just its text content by stripping its HTML tags.
Operators
Smart Tag supports the following operators for fields and values that are of HTML type.
- is equal to
- is not equal to
- starts with
- ends with
- contains
- matches
- does not start with
- does not end with
- does not contain
- does not match
is equal to
Returns true
if field value is equal to the input value.
is not equal to
Evaluates to true
if field value is not equal to to the input value.
starts with
Evaluates to true
if field value starts with to the input value.
ends with
Evaluates to true
if field value ends with to the input value.
contains
Evaluates to true
if field value contains to the input value.
matches
Evaluates to true
if field value matches to the input value.
does not start with
Evaluates to true
if field value does not start with to the input value.
does not end with
Evaluates to true
if field value does not end with to the input value.
does not contain
Evaluates to true
if field value does not contain to the input value.
does not match
Evaluates to true
if field value does not match to the input value.