~netlandish/django-wiki

85bf40747290a9eb1170e126f2e2f2eefa066c38 — Benjamin Bach 6 years ago 27abef6 + dc007ca
Merge pull request #851 from neic/master

Change order of safe and linebreak in template
1 files changed, 1 insertions(+), 1 deletions(-)

M src/wiki/plugins/macros/templates/wiki/plugins/macros/sidebar.html
M src/wiki/plugins/macros/templates/wiki/plugins/macros/sidebar.html => src/wiki/plugins/macros/templates/wiki/plugins/macros/sidebar.html +1 -1
@@ 3,7 3,7 @@

{% for macro in macros %}
<h4>{{ macro.short_description }}</h4>
{{ macro.help_text|linebreaks|safe }}
{{ macro.help_text|safe|linebreaks }}
{% if macro.example_code %}
<pre>{{ macro.example_code }}</pre>
{% endif %}