Skip to content

Commit

Permalink
Do not escape the output of description, markdown filter does it
Browse files Browse the repository at this point in the history
  • Loading branch information
agateau committed Jul 31, 2012
1 parent 6090050 commit fea2516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h2>{{ grp2|e }}</h2>
{% if item.task.description %}
<a class="description-icon" href='#' onclick='toggleVisibility("description-{{ item.task.id }}"); return false'><img src='icons/text-x-generic.png'/></a>
<div class='description' id='description-{{ item.task.id }}'>
{{ item.task.description|e|markdown }}
{{ item.task.description|markdown }}
</div>
{% endif %}
</li>
Expand Down

0 comments on commit fea2516

Please sign in to comment.