diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-15 11:20:44 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-15 11:20:44 -0800 |
commit | a7b27f8ee13f54979d71d961457fc187c9626387 (patch) | |
tree | d1a0512dfd19e86cd22ffb63b1a8c7423526d565 /js/lib/node.js | |
parent | 95cc23a396a29d58f8af29f5d03f5f31f494938f (diff) |
Removed artificial distinction btw FencedCode, IndentedCode
in blocks.js.
Diffstat (limited to 'js/lib/node.js')
-rw-r--r-- | js/lib/node.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/node.js b/js/lib/node.js index 9fc71c7..0c5bcee 100644 --- a/js/lib/node.js +++ b/js/lib/node.js @@ -80,7 +80,7 @@ var Node = function(nodeType, sourcepos) { this.destination = null; this.title = null; this.fence_char = null; - this.fence_length = null; + this.fence_length = 0; this.fence_offset = null; this.level = null; }; |