summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-10-02 17:54:14 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-10-02 17:54:14 -0700
commit6dfc19a529c64d17ec673196d2d549acc809bd54 (patch)
tree9ed56f704ae5839fc008f63e93c90ebd40c5550c /js
parentdb25de09f5dc931c0e2b31ce0ccdb58052f3105f (diff)
Revert "Use numerical constants."
This reverts commit db25de09f5dc931c0e2b31ce0ccdb58052f3105f.
Diffstat (limited to 'js')
-rwxr-xr-xjs/stmd.js270
1 files changed, 135 insertions, 135 deletions
diff --git a/js/stmd.js b/js/stmd.js
index 3c4eab0..23caf31 100755
--- a/js/stmd.js
+++ b/js/stmd.js
@@ -2137,7 +2137,8 @@
zwj: '‍',
zwnj: '‌' };
- /* Constants for inline and block types
+ // Constants for inline and block types:
+
var I_STR = 1;
var I_SOFT_BREAK = 2;
var I_HARD_BREAK = 3;
@@ -2159,9 +2160,9 @@
var B_HTML_BLOCK = 19;
var B_REFERENCE_DEF = 20;
var B_HORIZONTAL_RULE = 21;
- */
- /* Constants for character codes:
+ // Constants for character codes:
+
var C_NEWLINE = 10;
var C_SPACE = 32;
var C_ASTERISK = 42;
@@ -2176,7 +2177,6 @@
var C_AMPERSAND = 38;
var C_OPEN_PAREN = 40;
var C_COLON = 58;
- */
// Some regexps used in inline parser:
@@ -2360,7 +2360,7 @@
var match;
while (!foundCode && (match = this.match(/`+/m))) {
if (match === ticks) {
- inlines.push({ t: 9, c: this.subject.slice(afterOpenTicks,
+ inlines.push({ t: I_CODE, c: this.subject.slice(afterOpenTicks,
this.pos - ticks.length)
.replace(/[ \n]+/g,' ')
.trim() });
@@ -2369,7 +2369,7 @@
}
// If we got here, we didn't match a closing backtick sequence.
this.pos = afterOpenTicks;
- inlines.push({ t: 1, c: ticks });
+ inlines.push({ t: I_STR, c: ticks });
return true;
};
@@ -2379,16 +2379,16 @@
var parseBackslash = function(inlines) {
var subj = this.subject,
pos = this.pos;
- if (subj.charCodeAt(pos) === 92) {
+ if (subj.charCodeAt(pos) === C_BACKSLASH) {
if (subj.charAt(pos + 1) === '\n') {
this.pos = this.pos + 2;
- inlines.push({ t: 3 });
+ inlines.push({ t: I_HARD_BREAK });
} else if (reEscapable.test(subj.charAt(pos + 1))) {
this.pos = this.pos + 2;
- inlines.push({ t: 1, c: subj.charAt(pos + 1) });
+ inlines.push({ t: I_STR, c: subj.charAt(pos + 1) });
} else {
this.pos++;
- inlines.push({t: 1, c: '\\'});
+ inlines.push({t: I_STR, c: '\\'});
}
return true;
} else {
@@ -2403,15 +2403,15 @@
if ((m = this.match(/^<([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/))) { // email autolink
dest = m.slice(1,-1);
inlines.push(
- {t: 7,
- label: [{ t: 1, c: dest }],
+ {t: I_LINK,
+ label: [{ t: I_STR, c: dest }],
destination: 'mailto:' + encodeURI(unescape(dest)) });
return true;
} else if ((m = this.match(/^<(?:coap|doi|javascript|aaa|aaas|about|acap|cap|cid|crid|data|dav|dict|dns|file|ftp|geo|go|gopher|h323|http|https|iax|icap|im|imap|info|ipp|iris|iris.beep|iris.xpc|iris.xpcs|iris.lwz|ldap|mailto|mid|msrp|msrps|mtqp|mupdate|news|nfs|ni|nih|nntp|opaquelocktoken|pop|pres|rtsp|service|session|shttp|sieve|sip|sips|sms|snmp|soap.beep|soap.beeps|tag|tel|telnet|tftp|thismessage|tn3270|tip|tv|urn|vemmi|ws|wss|xcon|xcon-userid|xmlrpc.beep|xmlrpc.beeps|xmpp|z39.50r|z39.50s|adiumxtra|afp|afs|aim|apt|attachment|aw|beshare|bitcoin|bolo|callto|chrome|chrome-extension|com-eventbrite-attendee|content|cvs|dlna-playsingle|dlna-playcontainer|dtn|dvb|ed2k|facetime|feed|finger|fish|gg|git|gizmoproject|gtalk|hcp|icon|ipn|irc|irc6|ircs|itms|jar|jms|keyparc|lastfm|ldaps|magnet|maps|market|message|mms|ms-help|msnim|mumble|mvn|notes|oid|palm|paparazzi|platform|proxy|psyc|query|res|resource|rmi|rsync|rtmp|secondlife|sftp|sgn|skype|smb|soldat|spotify|ssh|steam|svn|teamspeak|things|udp|unreal|ut2004|ventrilo|view-source|webcal|wtai|wyciwyg|xfire|xri|ymsgr):[^<>\x00-\x20]*>/i))) {
dest = m.slice(1,-1);
inlines.push({
- t: 7,
- label: [{ t: 1, c: dest }],
+ t: I_LINK,
+ label: [{ t: I_STR, c: dest }],
destination: encodeURI(unescape(dest)) });
return true;
} else {
@@ -2423,7 +2423,7 @@
var parseHtmlTag = function(inlines) {
var m = this.match(reHtmlTag);
if (m) {
- inlines.push({ t: 6, c: m });
+ inlines.push({ t: I_HTML, c: m });
return true;
} else {
return false;
@@ -2457,7 +2457,7 @@
var can_open = numdelims > 0 && numdelims <= 3 && !(/\s/.test(char_after));
var can_close = numdelims > 0 && numdelims <= 3 && !(/\s/.test(char_before));
- if (cc === 95) {
+ if (cc === C_UNDERSCORE) {
can_open = can_open && !((/[a-z0-9]/i).test(char_before));
can_close = can_close && !((/[a-z0-9]/i).test(char_after));
}
@@ -2468,15 +2468,15 @@
};
var Emph = function(ils) {
- return {t: 4, c: ils};
+ return {t: I_EMPH, c: ils};
}
var Strong = function(ils) {
- return {t: 5, c: ils};
+ return {t: I_STRONG, c: ils};
}
var Str = function(s) {
- return {t: 1, c: s};
+ return {t: I_STR, c: s};
}
// Attempt to parse emphasis or strong emphasis.
@@ -2721,7 +2721,7 @@
// Attempt to parse a link label, returning number of characters parsed.
var parseLinkLabel = function() {
- if (this.peek() != 91) {
+ if (this.peek() != C_OPEN_BRACKET) {
return 0;
}
var startpos = this.pos;
@@ -2738,31 +2738,31 @@
}
this.pos++; // advance past [
var c;
- while ((c = this.peek()) && c != -1 && (c != 93 || nest_level > 0)) {
+ while ((c = this.peek()) && c != -1 && (c != C_CLOSE_BRACKET || nest_level > 0)) {
switch (c) {
- case 96:
+ case C_BACKTICK:
this.parseBackticks([]);
break;
- case 60:
+ case C_LESSTHAN:
this.parseAutolink([]) || this.parseHtmlTag([]) ||
this.pos++;
break;
- case 91: // nested []
+ case C_OPEN_BRACKET: // nested []
nest_level++;
this.pos++;
break;
- case 93: // nested []
+ case C_CLOSE_BRACKET: // nested []
nest_level--;
this.pos++;
break;
- case 92:
+ case C_BACKSLASH:
this.parseBackslash([]);
break;
default:
this.parseString([]);
}
}
- if (c === 93) {
+ if (c === C_CLOSE_BRACKET) {
this.label_nest_level = 0;
this.pos++; // advance past ]
return this.pos - startpos;
@@ -2800,7 +2800,7 @@
// if we got this far, we've parsed a label.
// Try to parse an explicit link: [label](url "title")
- if (this.peek() === 40) {
+ if (this.peek() === C_OPEN_PAREN) {
this.pos++;
if (this.spnl() &&
((dest = this.parseLinkDestination()) !== null) &&
@@ -2810,7 +2810,7 @@
(title = this.parseLinkTitle() || '') || true) &&
this.spnl() &&
this.match(/^\)/)) {
- inlines.push({ t: 7,
+ inlines.push({ t: I_LINK,
destination: dest,
title: title,
label: parseRawLabel(rawlabel) });
@@ -2838,7 +2838,7 @@
// lookup rawlabel in refmap
var link = this.refmap[normalizeReference(reflabel)];
if (link) {
- inlines.push({t: 7,
+ inlines.push({t: I_LINK,
destination: link.destination,
title: link.title,
label: parseRawLabel(rawlabel) });
@@ -2856,7 +2856,7 @@
var parseEntity = function(inlines) {
var m;
if ((m = this.match(reEntityHere))) {
- inlines.push({ t: 1, c: entityToChar(m) });
+ inlines.push({ t: I_STR, c: entityToChar(m) });
return true;
} else {
return false;
@@ -2868,7 +2868,7 @@
var parseString = function(inlines) {
var m;
if ((m = this.match(reMain))) {
- inlines.push({ t: 1, c: m });
+ inlines.push({ t: I_STR, c: m });
return true;
} else {
return false;
@@ -2881,9 +2881,9 @@
var m = this.match(/^ *\n/);
if (m) {
if (m.length > 2) {
- inlines.push({ t: 3 });
+ inlines.push({ t: I_HARD_BREAK });
} else if (m.length > 0) {
- inlines.push({ t: 2 });
+ inlines.push({ t: I_SOFT_BREAK });
}
return true;
}
@@ -2896,10 +2896,10 @@
if (this.match(/^!/)) {
var link = this.parseLink(inlines);
if (link) {
- inlines[inlines.length - 1].t = 8;
+ inlines[inlines.length - 1].t = I_IMAGE;
return true;
} else {
- inlines.push({ t: 1, c: '!' });
+ inlines.push({ t: I_STR, c: '!' });
return true;
}
} else {
@@ -2927,7 +2927,7 @@
}
// colon:
- if (this.peek() === 58) {
+ if (this.peek() === C_COLON) {
this.pos++;
} else {
this.pos = startpos;
@@ -2986,30 +2986,30 @@
}
var res;
switch(c) {
- case 10:
- case 32:
+ case C_NEWLINE:
+ case C_SPACE:
res = this.parseNewline(inlines);
break;
- case 92:
+ case C_BACKSLASH:
res = this.parseBackslash(inlines);
break;
- case 96:
+ case C_BACKTICK:
res = this.parseBackticks(inlines);
break;
- case 42:
- case 95:
+ case C_ASTERISK:
+ case C_UNDERSCORE:
res = this.parseEmphasis(c, inlines);
break;
- case 91:
+ case C_OPEN_BRACKET:
res = this.parseLink(inlines);
break;
- case 33:
+ case C_BANG:
res = this.parseImage(inlines);
break;
- case 60:
+ case C_LESSTHAN:
res = this.parseAutolink(inlines) || this.parseHtmlTag(inlines);
break;
- case 38:
+ case C_AMPERSAND:
res = this.parseEntity(inlines);
break;
default:
@@ -3018,7 +3018,7 @@
}
if (!res) {
this.pos += 1;
- inlines.push({t: 1, c: String.fromCharCode(c)});
+ inlines.push({t: I_STR, c: String.fromCharCode(c)});
}
if (memoize) {
@@ -3095,17 +3095,17 @@
// Returns true if parent block can contain child block.
var canContain = function(parent_type, child_type) {
- return ( parent_type === 10 ||
- parent_type === 12 ||
- parent_type === 13 ||
- (parent_type === 14 && child_type === 13) );
+ return ( parent_type === B_DOCUMENT ||
+ parent_type === B_BLOCK_QUOTE ||
+ parent_type === B_LIST_ITEM ||
+ (parent_type === B_LIST && child_type === B_LIST_ITEM) );
};
// Returns true if block type can accept lines of text.
var acceptsLines = function(block_type) {
- return ( block_type === 11 ||
- block_type === 17 ||
- block_type === 18 );
+ return ( block_type === B_PARAGRAPH ||
+ block_type === B_INDENTED_CODE ||
+ block_type === B_FENCED_CODE );
};
// Returns true if block ends with a blank line, descending if needed
@@ -3114,7 +3114,7 @@
if (block.last_line_blank) {
return true;
}
- if ((block.t === 14 || block.t === 13) && block.children.length > 0) {
+ if ((block.t === B_LIST || block.t === B_LIST_ITEM) && block.children.length > 0) {
return endsWithBlankLine(block.children[block.children.length - 1]);
} else {
return false;
@@ -3129,7 +3129,7 @@
var b = block;
var last_list = null;
do {
- if (b.t === 14) {
+ if (b.t === B_LIST) {
last_list = b;
}
b = b.parent;
@@ -3258,10 +3258,10 @@
indent = first_nonspace - offset;
switch (container.t) {
- case 12:
- if (indent <= 3 && ln.charCodeAt(first_nonspace) === 62) {
+ case B_BLOCK_QUOTE:
+ if (indent <= 3 && ln.charCodeAt(first_nonspace) === C_GREATERTHAN) {
offset = first_nonspace + 1;
- if (ln.charCodeAt(offset) === 32) {
+ if (ln.charCodeAt(offset) === C_SPACE) {
offset++;
}
} else {
@@ -3269,7 +3269,7 @@
}
break;
- case 13:
+ case B_LIST_ITEM:
if (indent >= container.list_data.marker_offset +
container.list_data.padding) {
offset += container.list_data.marker_offset +
@@ -3281,7 +3281,7 @@
}
break;
- case 17:
+ case B_INDENTED_CODE:
if (indent >= CODE_INDENT) {
offset += CODE_INDENT;
} else if (blank) {
@@ -3291,29 +3291,29 @@
}
break;
- case 15:
- case 16:
- case 21:
+ case B_ATX_HEADER:
+ case B_SETEXT_HEADER:
+ case B_HORIZONTAL_RULE:
// a header can never container > 1 line, so fail to match:
all_matched = false;
break;
- case 18:
+ case B_FENCED_CODE:
// skip optional spaces of fence offset
i = container.fence_offset;
- while (i > 0 && ln.charCodeAt(offset) === 32) {
+ while (i > 0 && ln.charCodeAt(offset) === C_SPACE) {
offset++;
i--;
}
break;
- case 19:
+ case B_HTML_BLOCK:
if (blank) {
all_matched = false;
}
break;
- case 11:
+ case B_PARAGRAPH:
if (blank) {
container.last_line_blank = true;
all_matched = false;
@@ -3352,9 +3352,9 @@
// Unless last matched container is a code block, try new container starts,
// adding children to the last matched container:
- while (container.t != 18 &&
- container.t != 17 &&
- container.t != 19 &&
+ while (container.t != B_FENCED_CODE &&
+ container.t != B_INDENTED_CODE &&
+ container.t != B_HTML_BLOCK &&
// this is a little performance optimization:
matchAt(/^[ #`~*+_=<>0-9-]/,ln,offset) !== null) {
@@ -3370,29 +3370,29 @@
if (indent >= CODE_INDENT) {
// indented code
- if (this.tip.t != 11 && !blank) {
+ if (this.tip.t != B_PARAGRAPH && !blank) {
offset += CODE_INDENT;
closeUnmatchedBlocks(this);
- container = this.addChild(17, line_number, offset);
+ container = this.addChild(B_INDENTED_CODE, line_number, offset);
} else { // indent > 4 in a lazy paragraph continuation
break;
}
- } else if (ln.charCodeAt(first_nonspace) === 62) {
+ } else if (ln.charCodeAt(first_nonspace) === C_GREATERTHAN) {
// blockquote
offset = first_nonspace + 1;
// optional following space
- if (ln.charCodeAt(offset) === 32) {
+ if (ln.charCodeAt(offset) === C_SPACE) {
offset++;
}
closeUnmatchedBlocks(this);
- container = this.addChild(12, line_number, offset);
+ container = this.addChild(B_BLOCK_QUOTE, line_number, offset);
} else if ((match = ln.slice(first_nonspace).match(/^#{1,6}(?: +|$)/))) {
// ATX header
offset = first_nonspace + match[0].length;
closeUnmatchedBlocks(this);
- container = this.addChild(15, line_number, first_nonspace);
+ container = this.addChild(B_ATX_HEADER, line_number, first_nonspace);
container.level = match[0].trim().length; // number of #s
// remove trailing ###s:
container.strings =
@@ -3403,7 +3403,7 @@
// fenced code block
var fence_length = match[0].length;
closeUnmatchedBlocks(this);
- container = this.addChild(18, line_number, first_nonspace);
+ container = this.addChild(B_FENCED_CODE, line_number, first_nonspace);
container.fence_length = fence_length;
container.fence_char = match[0][0];
container.fence_offset = first_nonspace - offset;
@@ -3413,23 +3413,23 @@
} else if (matchAt(reHtmlBlockOpen, ln, first_nonspace) !== null) {
// html block
closeUnmatchedBlocks(this);
- container = this.addChild(19, line_number, first_nonspace);
+ container = this.addChild(B_HTML_BLOCK, line_number, first_nonspace);
// note, we don't adjust offset because the tag is part of the text
break;
- } else if (container.t == 11 &&
+ } else if (container.t == B_PARAGRAPH &&
container.strings.length === 1 &&
((match = ln.slice(first_nonspace).match(/^(?:=+|-+) *$/)))) {
// setext header line
closeUnmatchedBlocks(this);
- container.t = 16; // convert Paragraph to SetextHeader
+ container.t = B_SETEXT_HEADER; // convert Paragraph to SetextHeader
container.level = match[0][0] === '=' ? 1 : 2;
offset = ln.length;
} else if (matchAt(reHrule, ln, first_nonspace) !== null) {
// hrule
closeUnmatchedBlocks(this);
- container = this.addChild(21, line_number, first_nonspace);
+ container = this.addChild(B_HORIZONTAL_RULE, line_number, first_nonspace);
offset = ln.length - 1;
break;
@@ -3440,14 +3440,14 @@
offset = first_nonspace + data.padding;
// add the list if needed
- if (container.t !== 14 ||
+ if (container.t !== B_LIST ||
!(listsMatch(container.list_data, data))) {
- container = this.addChild(14, line_number, first_nonspace);
+ container = this.addChild(B_LIST, line_number, first_nonspace);
container.list_data = data;
}
// add the list item
- container = this.addChild(13, line_number, first_nonspace);
+ container = this.addChild(B_LIST_ITEM, line_number, first_nonspace);
container.list_data = data;
} else {
@@ -3477,7 +3477,7 @@
// First check for a lazy paragraph continuation:
if (this.tip !== last_matched_container &&
!blank &&
- this.tip.t == 11 &&
+ this.tip.t == B_PARAGRAPH &&
this.tip.strings.length > 0) {
// lazy paragraph continuation
@@ -3494,9 +3494,9 @@
// lists or breaking out of lists. We also don't set last_line_blank
// on an empty list item.
container.last_line_blank = blank &&
- !(container.t == 12 ||
- container.t == 18 ||
- (container.t == 13 &&
+ !(container.t == B_BLOCK_QUOTE ||
+ container.t == B_FENCED_CODE ||
+ (container.t == B_LIST_ITEM &&
container.children.length === 0 &&
container.start_line == line_number));
@@ -3507,12 +3507,12 @@
}
switch (container.t) {
- case 17:
- case 19:
+ case B_INDENTED_CODE:
+ case B_HTML_BLOCK:
this.addLine(ln, offset);
break;
- case 18:
+ case B_FENCED_CODE:
// check for closing code fence:
match = (indent <= 3 &&
ln.charAt(first_nonspace) == container.fence_char &&
@@ -3525,9 +3525,9 @@
}
break;
- case 15:
- case 16:
- case 21:
+ case B_ATX_HEADER:
+ case B_SETEXT_HEADER:
+ case B_HORIZONTAL_RULE:
// nothing to do; we already added the contents.
break;
@@ -3536,10 +3536,10 @@
this.addLine(ln, first_nonspace);
} else if (blank) {
// do nothing
- } else if (container.t != 21 &&
- container.t != 16) {
+ } else if (container.t != B_HORIZONTAL_RULE &&
+ container.t != B_SETEXT_HEADER) {
// create paragraph container for line
- container = this.addChild(11, line_number, first_nonspace);
+ container = this.addChild(B_PARAGRAPH, line_number, first_nonspace);
this.addLine(ln, first_nonspace);
} else {
console.log("Line " + line_number.toString() +
@@ -3570,32 +3570,32 @@
}
switch (block.t) {
- case 11:
+ case B_PARAGRAPH:
block.string_content = block.strings.join('\n').replace(/^ */m,'');
// try parsing the beginning as link reference definitions:
- while (block.string_content.charCodeAt(0) === 91 &&
+ while (block.string_content.charCodeAt(0) === C_OPEN_BRACKET &&
(pos = this.inlineParser.parseReference(block.string_content,
this.refmap))) {
block.string_content = block.string_content.slice(pos);
if (isBlank(block.string_content)) {
- block.t = 20;
+ block.t = B_REFERENCE_DEF;
break;
}
}
break;
- case 15:
- case 16:
- case 19:
+ case B_ATX_HEADER:
+ case B_SETEXT_HEADER:
+ case B_HTML_BLOCK:
block.string_content = block.strings.join('\n');
break;
- case 17:
+ case B_INDENTED_CODE:
block.string_content = block.strings.join('\n').replace(/(\n *)*$/,'\n');
break;
- case 18:
+ case B_FENCED_CODE:
// first line becomes info string
block.info = unescapeEntBS(block.strings[0].trim());
if (block.strings.length == 1) {
@@ -3605,7 +3605,7 @@
}
break;
- case 14:
+ case B_LIST:
block.tight = true; // tight by default
var numitems = block.children.length;
@@ -3646,9 +3646,9 @@
// into inline content where appropriate.
var processInlines = function(block) {
switch(block.t) {
- case 11:
- case 16:
- case 15:
+ case B_PARAGRAPH:
+ case B_SETEXT_HEADER:
+ case B_ATX_HEADER:
block.inline_content =
this.inlineParser.parse(block.string_content.trim(), this.refmap);
block.string_content = "";
@@ -3667,7 +3667,7 @@
// The main parsing function. Returns a parsed document AST.
var parse = function(input) {
- this.doc = makeBlock(10, 1, 1);
+ this.doc = makeBlock(B_DOCUMENT, 1, 1);
this.tip = this.doc;
this.refmap = {};
var lines = input.replace(/\n$/,'').split(/\r\n|\n|\r/);
@@ -3686,7 +3686,7 @@
// The DocParser object.
function DocParser(){
return {
- doc: makeBlock(10, 1, 1),
+ doc: makeBlock(B_DOCUMENT, 1, 1),
tip: this.doc,
refmap: {},
inlineParser: new InlineParser(),
@@ -3727,32 +3727,32 @@
var renderInline = function(inline) {
var attrs;
switch (inline.t) {
- case 1:
+ case I_STR:
return this.escape(inline.c);
- case 2:
+ case I_SOFT_BREAK:
return this.softbreak;
- case 3:
+ case I_HARD_BREAK:
return inTags('br',[],"",true) + '\n';
- case 4:
+ case I_EMPH:
return inTags('em', [], this.renderInlines(inline.c));
- case 5:
+ case I_STRONG:
return inTags('strong', [], this.renderInlines(inline.c));
- case 6:
+ case I_HTML:
return inline.c;
- case 7:
+ case I_LINK:
attrs = [['href', this.escape(inline.destination, true)]];
if (inline.title) {
attrs.push(['title', this.escape(inline.title, true)]);
}
return inTags('a', attrs, this.renderInlines(inline.label));
- case 8:
+ case I_IMAGE:
attrs = [['src', this.escape(inline.destination, true)],
['alt', this.escape(this.renderInlines(inline.label))]];
if (inline.title) {
attrs.push(['title', this.escape(inline.title, true)]);
}
return inTags('img', attrs, "", true);
- case 9:
+ case I_CODE:
return inTags('code', [], this.escape(inline.c));
default:
console.log("Unknown inline type " + inline.t);
@@ -3775,48 +3775,48 @@
var attr;
var info_words;
switch (block.t) {
- case 10:
+ case B_DOCUMENT:
var whole_doc = this.renderBlocks(block.children);
return (whole_doc === '' ? '' : whole_doc + '\n');
- case 11:
+ case B_PARAGRAPH:
if (in_tight_list) {
return this.renderInlines(block.inline_content);
} else {
return inTags('p', [], this.renderInlines(block.inline_content));
}
break;
- case 12:
+ case B_BLOCK_QUOTE:
var filling = this.renderBlocks(block.children);
return inTags('blockquote', [], filling === '' ? this.innersep :
this.innersep + filling + this.innersep);
- case 13:
+ case B_LIST_ITEM:
return inTags('li', [], this.renderBlocks(block.children, in_tight_list).trim());
- case 14:
+ case B_LIST:
tag = block.list_data.type == 'Bullet' ? 'ul' : 'ol';
attr = (!block.list_data.start || block.list_data.start == 1) ?
[] : [['start', block.list_data.start.toString()]];
return inTags(tag, attr, this.innersep +
this.renderBlocks(block.children, block.tight) +
this.innersep);
- case 15:
- case 16:
+ case B_ATX_HEADER:
+ case B_SETEXT_HEADER:
tag = 'h' + block.level;
return inTags(tag, [], this.renderInlines(block.inline_content));
- case 17:
+ case B_INDENTED_CODE:
return inTags('pre', [],
inTags('code', [], this.escape(block.string_content)));
- case 18:
+ case B_FENCED_CODE:
info_words = block.info.split(/ +/);
attr = info_words.length === 0 || info_words[0].length === 0 ?
[] : [['class','language-' +
this.escape(info_words[0],true)]];
return inTags('pre', [],
inTags('code', attr, this.escape(block.string_content)));
- case 19:
+ case B_HTML_BLOCK:
return block.string_content;
- case 20:
+ case B_REFERENCE_DEF:
return "";
- case 21:
+ case B_HORIZONTAL_RULE:
return inTags('hr',[],"",true);
default:
console.log("Unknown block type " + block.t);
@@ -3828,7 +3828,7 @@
var renderBlocks = function(blocks, in_tight_list) {
var result = [];
for (var i=0; i < blocks.length; i++) {
- if (blocks[i].t !== 20) {
+ if (blocks[i].t !== B_REFERENCE_DEF) {
result.push(this.renderBlock(blocks[i], in_tight_list));
}
}