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
A template that uses the {% verbatim %} template tag as - verbatim raises a TemplateSyntaxError: "Unclosed tag 'verbatim'. Looking for one of: endverbatim."
Sample template that fails:
- verbatim
%h1= page_title
Everything works if I wrap the block in non-Haml {% verbatim %} tags, like so:
{% verbatim %}
%h1= page_title
{% endverbatim %}
Output:
<h1>{{ page_title }}</h1>
The text was updated successfully, but these errors were encountered:
A template that uses the
{% verbatim %}
template tag as- verbatim
raises a TemplateSyntaxError: "Unclosed tag 'verbatim'. Looking for one of: endverbatim."Sample template that fails:
Everything works if I wrap the block in non-Haml
{% verbatim %}
tags, like so:Output:
The text was updated successfully, but these errors were encountered: