Is a way to pass HTML content in a variable and disable the escaping process? P.e.: ``` <html><body> {%$myvar = "<b>Hello</b> world"%} {%$myvar} </body></html> ``` Expected output: ``` <html><body> <b>Hello</b> world </body></html> ```