From 298889ff1729e2c3b43ec1ecf2ada877a5ac0229 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Tue, 13 Jan 2015 10:42:55 -0800
Subject: Fixed start column for blockquotes.

---
 js/lib/blocks.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'js')

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
-- 
cgit v1.2.3