You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**variable**| Replaced with the value of `variable`. |
120
-
|**variable@function**| Replaced with the result of the call `function(variable)`. Can be chained to the left (`__variable@function1@function2__ ` etc). |
|`__variable__`| Replaced with the value of `variable`. |
120
+
|`__variable@function__`| Replaced with the result of the call `function(variable)`. Can be chained to the left (`__variable@function1@function2__ ` etc). |
| <%= expression %> | Replaced with the result of the call of the given expression. This only supports direct expressions, no structural (for/if/...) JavaScript. |
127
-
| <%- expression %> | Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '<') |
128
-
| <% inline code %> | Inserts the given code into the template structure, allowing to insert structural JavaScript. |
129
-
| <%# text %> | A comment, which gets entirely dropped. |
|`<%= expression %>`| Replaced with the result of the call of the given expression. This only supports direct expressions, no structural (for/if/...) JavaScript. |
127
+
|`<%- expression %>`| Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '<') |
128
+
|`<% inline code %>`| Inserts the given code into the template structure, allowing to insert structural JavaScript. |
129
+
|`<%# text %>`| A comment, which gets entirely dropped. |
0 commit comments