diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-27 21:12:12 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-27 21:12:12 -0400 |
commit | 3fa549352ca13d020a8cffaaad0db81b7c66c5b3 (patch) | |
tree | 112a940163db29375e69f0590646d999034f0ccf /app/Templates/comment_show.php | |
parent | 23753bde1c1f980f481fec247ced2f4cecc227f3 (diff) |
Replace Markdown parser by Parsedown
Diffstat (limited to 'app/Templates/comment_show.php')
-rw-r--r-- | app/Templates/comment_show.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Templates/comment_show.php b/app/Templates/comment_show.php index 181a69fa..5069120d 100644 --- a/app/Templates/comment_show.php +++ b/app/Templates/comment_show.php @@ -21,7 +21,7 @@ <?php endif ?> <div class="markdown"> - <?= Helper\parse($comment['comment']) ?> + <?= Helper\markdown($comment['comment']) ?> </div> </div> |