From 9c0b2f51a2e560a3932bb060ecfbfb50879548de Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 2 Oct 2014 12:59:13 -0700 Subject: Fixed rendering bug for blockquotes. --- js/stmd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js') diff --git a/js/stmd.js b/js/stmd.js index fc8d4a7..4ca38cc 100755 --- a/js/stmd.js +++ b/js/stmd.js @@ -3735,7 +3735,7 @@ case 'BlockQuote': var filling = this.renderBlocks(block.children); return inTags('blockquote', [], filling === '' ? this.innersep : - this.innersep + this.renderBlocks(block.children) + this.innersep); + this.innersep + filling + this.innersep); case 'ListItem': return inTags('li', [], this.renderBlocks(block.children, in_tight_list).trim()); case 'List': -- cgit v1.2.3