We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When writing a page in rst, i do things like
{% for l in [1,2,3,4] -%} * Test{{l}}tseT {% endfor %}
I actually iterate over context.contents but this is enough as a simple test case.
I expect the rst to be rendered to
* Test1tseT * Test2tseT * Test3tseT * Test4tseT
and this renders to a fine unordered list.
but i can see, that this is rendered to html first:
<div class="section" id="fehlererzeugung-bei-rst-jinja"> {% for a in [1,2,3,4] %} * Test{{a}}tseT {% endfor %}</div> </div>
and is not interpreted as rst.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When writing a page in rst, i do things like
I actually iterate over context.contents but this is enough as a simple test case.
I expect the rst to be rendered to
and this renders to a fine unordered list.
but i can see, that this is rendered to html first:
and is not interpreted as rst.
The text was updated successfully, but these errors were encountered: