class Crinja::Tag::Autoescape
- Crinja::Tag::Autoescape
- Crinja::Tag
- Reference
- Object
Overview
If you want you can activate and deactivate the autoescaping from within the templates.
{% autoescape true %}
Autoescaping is active within this block
{% endautoescape %}
{% autoescape false %}
Autoescaping is inactive within this block
{% endautoescape %}
After an endautoescape the behavior is reverted to what it was before.
See Jinja2 Template Documentation for details.
Defined in:
lib/tag/autoescape.crInstance Method Summary
- #end_tag : String?
- #interpret_output(renderer : Crinja::Renderer, tag_node : TagNode)
- #name : String