From 4d4dc344a6120adba171e3fec1ac6c985c41a125 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Wed, 29 Oct 2014 21:07:05 -0400 Subject: [PATCH] temporary fix until remarkable is updated in markdown plugin https://github.com/jonschlinkert/remarkable/issues/88#issuecomment-60885589 --- src/postTools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/postTools.js b/src/postTools.js index 4e6206ac34..f9fdf52b1f 100644 --- a/src/postTools.js +++ b/src/postTools.js @@ -172,7 +172,7 @@ var winston = require('winston'), }; PostTools.parse = function(raw, callback) { - parse('filter:post.parse', raw, callback); + parse('filter:post.parse', raw + '\n', callback); }; PostTools.parseSignature = function(raw, callback) {