safe filter must be at the very end since zola 0.8.0

This commit is contained in:
Philipp Oppermann
2019-09-29 15:48:12 +02:00
parent c76516db75
commit 032ea13c65

View File

@@ -35,7 +35,7 @@
</div> </div>
{% endif %} {% endif %}
{{ page.content | safe | replace(from="<!-- toc -->", to=macros::toc(toc=toc))}} {{ page.content | replace(from="<!-- toc -->", to=macros::toc(toc=toc)) | safe }}
<div class="post-footer-support"> <div class="post-footer-support">
<h2>Support Me</h2> <h2>Support Me</h2>
@@ -61,5 +61,3 @@
</section> </section>
{% endblock after_main %} {% endblock after_main %}