Automatically appending the html escape filter on the renderer side.

This commit is contained in:
Tom Alexander
2020-05-23 17:57:19 -04:00
parent 6a9fe9e1be
commit 624c83b680
2 changed files with 27 additions and 3 deletions

View File

@@ -1,4 +1,9 @@
Special characters: {special_characters}{~n}
Special characters html escaping disabled: {special_characters|s}{~n}
Special characters html escaping disabled and enabled: {special_characters|s|h}{~n}
Special characters html escaping enabled and disabled: {special_characters|h|s}{~n}
Special characters html escaped twice: {special_characters|h|h}{~n}
Object string parsed: {string|jp}{~n}
Object string parsed and stringified: {string|jp|js}{~n}
@@ -13,3 +18,4 @@ Object html escaped: {object|h}{~n}
Object html escaping disabled: {object|s}{~n}
Object stringified: {object|js}{~n}
Object stringified and parsed: {object|js|jp}{~n}
Object stringified, html escaping disabled, parsed, stringified, and html escaped: {object|js|s|jp|js|h}{~n}