From aefa56221b0eb360a0f8105cc81899756ce73909 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 26 Aug 2013 11:56:28 -0400 Subject: [PATCH] closed #202 --- src/posts.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/posts.js b/src/posts.js index e34e06ee40..7c3cce1345 100644 --- a/src/posts.js +++ b/src/posts.js @@ -329,6 +329,7 @@ var RDB = require('./redis.js'), }, content: function(next) { plugins.fireHook('filter:post.get', postData, function(postData) { + postData.content = postTools.markdownToHTML(postData.content, false); next(null, postData.content); }); }