diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-13 10:42:55 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-13 10:42:55 -0800 |
commit | 298889ff1729e2c3b43ec1ecf2ada877a5ac0229 (patch) | |
tree | 7a6c0eb1133b3e8ceaee2e21088504638ab3e505 | |
parent | 3b2e2cc28b26651c29ca92fb1fd80dcbf012169a (diff) |
Fixed start column for blockquotes.
-rw-r--r-- | js/lib/blocks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/blocks.js b/js/lib/blocks.js index c67b585..c2293df 100644 --- a/js/lib/blocks.js +++ b/js/lib/blocks.js @@ -386,7 +386,7 @@ var incorporateLine = function(ln) { offset++; } this.closeUnmatchedBlocks(); - container = this.addChild('BlockQuote', offset); + container = this.addChild('BlockQuote', first_nonspace); } else if ((match = ln.slice(first_nonspace).match(reATXHeaderMarker))) { // ATX header |