diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-10-02 12:59:13 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-10-02 12:59:13 -0700 |
commit | 9c0b2f51a2e560a3932bb060ecfbfb50879548de (patch) | |
tree | c1d87be95b78570d0af65e11be6a9ce69df5ca54 /js/stmd.js | |
parent | 67e76295cbc15e258c6ac579b082e410b4aaca6a (diff) |
Fixed rendering bug for blockquotes.
Diffstat (limited to 'js/stmd.js')
-rwxr-xr-x | js/stmd.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |