HTML content commands are typically used to add data values for generated documents. Content commands can also define conditions and loops. HTML content commands are used within HTML templates.
HTML content commands are presented as HTML element custom attributes starting with dyn-
prefix.
Example:
<span dyn-content="Account.Name">[Account Name]</span>
Here dyn-content
presents content command.
One HTML element can have also multiple content commands.
Example:
<span dyn-if="Account.Amount > 10000" dyn-content="Account.Name">[Account Name]</span>