summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-10-02 12:59:13 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-10-02 12:59:13 -0700
commit9c0b2f51a2e560a3932bb060ecfbfb50879548de (patch)
treec1d87be95b78570d0af65e11be6a9ce69df5ca54 /js
parent67e76295cbc15e258c6ac579b082e410b4aaca6a (diff)
Fixed rendering bug for blockquotes.
Diffstat (limited to 'js')
-rwxr-xr-xjs/stmd.js2
1 files changed, 1 insertions, 1 deletions
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':