summaryrefslogtreecommitdiff
path: root/js/lib
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-15 11:20:44 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-15 11:20:44 -0800
commita7b27f8ee13f54979d71d961457fc187c9626387 (patch)
treed1a0512dfd19e86cd22ffb63b1a8c7423526d565 /js/lib
parent95cc23a396a29d58f8af29f5d03f5f31f494938f (diff)
Removed artificial distinction btw FencedCode, IndentedCode
in blocks.js.
Diffstat (limited to 'js/lib')
-rw-r--r--js/lib/blocks.js100
-rw-r--r--js/lib/node.js2
2 files changed, 51 insertions, 51 deletions
diff --git a/js/lib/blocks.js b/js/lib/blocks.js
index 590852a..511acb4 100644
--- a/js/lib/blocks.js
+++ b/js/lib/blocks.js
@@ -96,8 +96,7 @@ var canContain = function(parent_type, child_type) {
// Returns true if block type can accept lines of text.
var acceptsLines = function(block_type) {
return ( block_type === 'Paragraph' ||
- block_type === 'IndentedCode' ||
- block_type === 'FencedCode' );
+ block_type === 'CodeBlock' );
};
// Returns true if block ends with a blank line, descending if needed
@@ -295,16 +294,6 @@ var incorporateLine = function(ln) {
}
break;
- case 'IndentedCode':
- if (indent >= CODE_INDENT) {
- offset += CODE_INDENT;
- } else if (blank) {
- offset = first_nonspace;
- } else {
- all_matched = false;
- }
- break;
-
case 'Header':
case 'HorizontalRule':
// a header can never container > 1 line, so fail to match:
@@ -314,12 +303,22 @@ var incorporateLine = function(ln) {
}
break;
- case 'FencedCode':
- // skip optional spaces of fence offset
- i = container.fence_offset;
- while (i > 0 && ln.charCodeAt(offset) === C_SPACE) {
- offset++;
- i--;
+ case 'CodeBlock':
+ if (container.fence_length > 0) { // fenced
+ // skip optional spaces of fence offset
+ i = container.fence_offset;
+ while (i > 0 && ln.charCodeAt(offset) === C_SPACE) {
+ offset++;
+ i--;
+ }
+ } else { // indented
+ if (indent >= CODE_INDENT) {
+ offset += CODE_INDENT;
+ } else if (blank) {
+ offset = first_nonspace;
+ } else {
+ all_matched = false;
+ }
}
break;
@@ -356,8 +355,7 @@ var incorporateLine = function(ln) {
// Unless last matched container is a code block, try new container starts,
// adding children to the last matched container:
- while (container.t !== 'FencedCode' &&
- container.t !== 'IndentedCode' &&
+ while (container.t !== 'CodeBlock' &&
container.t !== 'HtmlBlock' &&
// this is a little performance optimization:
matchAt(reMaybeSpecial, ln, offset) !== -1) {
@@ -379,7 +377,7 @@ var incorporateLine = function(ln) {
offset += CODE_INDENT;
allClosed = allClosed ||
this.closeUnmatchedBlocks();
- container = this.addChild('IndentedCode', offset);
+ container = this.addChild('CodeBlock', offset);
}
break;
}
@@ -413,7 +411,7 @@ var incorporateLine = function(ln) {
// fenced code block
var fence_length = match[0].length;
allClosed = allClosed || this.closeUnmatchedBlocks();
- container = this.addChild('FencedCode', first_nonspace);
+ container = this.addChild('CodeBlock', first_nonspace);
container.fence_length = fence_length;
container.fence_char = match[0][0];
container.fence_offset = indent;
@@ -498,11 +496,12 @@ var incorporateLine = function(ln) {
// and we don't count blanks in fenced code for purposes of tight/loose
// lists or breaking out of lists. We also don't set last_line_blank
// on an empty list item.
+ var t = container.t;
container.last_line_blank = blank &&
- !(container.t === 'BlockQuote' ||
- container.t === 'Header' ||
- container.t === 'FencedCode' ||
- (container.t === 'Item' &&
+ !(t === 'BlockQuote' ||
+ t === 'Header' ||
+ (t === 'CodeBlock' && container.fence_length > 0) ||
+ (t === 'Item' &&
!container.firstChild &&
container.sourcepos[0][0] === this.lineNumber));
@@ -513,20 +512,23 @@ var incorporateLine = function(ln) {
}
switch (container.t) {
- case 'IndentedCode':
case 'HtmlBlock':
this.addLine(ln, offset);
break;
- case 'FencedCode':
- // check for closing code fence:
- match = (indent <= 3 &&
- ln.charAt(first_nonspace) === container.fence_char &&
- ln.slice(first_nonspace).match(reClosingCodeFence));
- if (match && match[0].length >= container.fence_length) {
- // don't add closing fence to container; instead, close it:
- this.finalize(container, this.lineNumber);
- } else {
+ case 'CodeBlock':
+ if (container.fence_length > 0) { // fenced
+ // check for closing code fence:
+ match = (indent <= 3 &&
+ ln.charAt(first_nonspace) === container.fence_char &&
+ ln.slice(first_nonspace).match(reClosingCodeFence));
+ if (match && match[0].length >= container.fence_length) {
+ // don't add closing fence to container; instead, close it:
+ this.finalize(container, this.lineNumber);
+ } else {
+ this.addLine(ln, offset);
+ }
+ } else { // indented
this.addLine(ln, offset);
}
break;
@@ -589,21 +591,19 @@ var finalize = function(block, lineNumber) {
block.literal = block.strings.join('\n');
break;
- case 'IndentedCode':
- stripFinalBlankLines(block.strings);
- block.literal = block.strings.join('\n') + '\n';
- block.t = 'CodeBlock';
- break;
-
- case 'FencedCode':
- // first line becomes info string
- block.info = unescapeString(block.strings[0].trim());
- if (block.strings.length === 1) {
- block.literal = '';
- } else {
- block.literal = block.strings.slice(1).join('\n') + '\n';
+ case 'CodeBlock':
+ if (block.fence_length > 0) { // fenced
+ // first line becomes info string
+ block.info = unescapeString(block.strings[0].trim());
+ if (block.strings.length === 1) {
+ block.literal = '';
+ } else {
+ block.literal = block.strings.slice(1).join('\n') + '\n';
+ }
+ } else { // indented
+ stripFinalBlankLines(block.strings);
+ block.literal = block.strings.join('\n') + '\n';
}
- block.t = 'CodeBlock';
break;
case 'List':
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;
};