Understand AnQiCMS default security policy: HTML encoding

AnQiCMS's template engine, when handling variable output, draws on the design concepts of mainstream template engines such as Django, and defaults to escaping special characters such as HTML tags and JavaScript code. For example, if you enter<h1>Hello World!</h1>,and directly use in the template.{{ content_variable }}It may not be a large title you see, but the original HTML text.&lt;h1&gt;Hello World!&lt;/h1&gt;.

This default translation