summaryrefslogtreecommitdiff
path: root/js/lib
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-13 10:42:55 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-13 10:42:55 -0800
commit298889ff1729e2c3b43ec1ecf2ada877a5ac0229 (patch)
tree7a6c0eb1133b3e8ceaee2e21088504638ab3e505 /js/lib
parent3b2e2cc28b26651c29ca92fb1fd80dcbf012169a (diff)
Fixed start column for blockquotes.
Diffstat (limited to 'js/lib')
-rw-r--r--js/lib/blocks.js2
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