- Commit
- 9c0b2f51a2e560a3932bb060ecfbfb50879548de
- Parent
- 67e76295cbc15e258c6ac579b082e410b4aaca6a
- Author
- John MacFarlane <fiddlosopher@gmail.com>
- Date
Fixed rendering bug for blockquotes.
My personal build of CMark ✏️
Fixed rendering bug for blockquotes.
1 file changed, 1 insertion, 1 deletion
Status | File Name | N° Changes | Insertions | Deletions |
Modified | js/stmd.js | 2 | 1 | 1 |
diff --git 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':