-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.js
212 lines (172 loc) · 5.85 KB
/
parser.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
var DEBUG = false;
// Dependencies ///////////////////////////////////////////////////////////////
var fm = require("front-matter")
, md = require("markdown").markdown;
// CVMLModifier ///////////////////////////////////////////////////////////////
var CVMLModifier = function(label, stub) {
this.label = label || "UNRECOGNISED";
this.stub = stub || "";
return this;
};
CVMLModifier.UNRECOGNISED = -1;
CVMLModifier.PLAIN = 0;
CVMLModifier.LABEL = 1;
CVMLModifier.EMPHASIS = 2;
CVMLModifier.SECTION = 3;
CVMLModifier.RULE = 4;
CVMLModifier.TITLE = 5;
CVMLModifier.PAGEBREAK = 6;
// CVMLParser /////////////////////////////////////////////////////////////////
var CVMLParser = function() {
this.modifiers = [];
this.document = {
metadata: {},
contents: []
};
this.registerDefaultModifiers();
};
CVMLParser.prototype.registerDefaultModifiers = function() {
if (DEBUG) console.log("### REGISTERING DEFAULT MODIFIERS..");
this.modifiers = [
new CVMLModifier("PLAIN", " "),
new CVMLModifier("LABEL", " -"),
new CVMLModifier("EMPHASIS", " --"),
new CVMLModifier("SECTION", "==="),
new CVMLModifier("RULE", " ="),
new CVMLModifier("TITLE", " /"),
new CVMLModifier("PAGEBREAK", " .")
];
// if (DEBUG) console.log(this.modifiers);
};
CVMLParser.prototype.identifyModifier = function(stub) {
for (var m=this.modifiers.length-1; m>=0; m--) {
if (this.modifiers[m].stub === stub) {
return this.modifiers[m];
}
}
return -1;
}
CVMLParser.prototype.parseMetaData = function(document) {
var content = fm(document);
for (a in content.attributes) {
this.document.metadata[a] = content.attributes[a];
}
return content.body;
};
CVMLParser.prototype.parseContents = function(buffer) {
var lines = buffer.split("\n")
, contents = []
, section
, item = { label: "", content: "", type: "text" }
, line
, l = 0;
if (DEBUG) console.log("### LINES OF CVML TO PARSE:", lines.length);
while (l < lines.length) {
line = lines[l];
if (line.length > 3) {
// console.log("LINE (" + l + ")", line);
line = this.parseLine(line);
switch (CVMLModifier[line.type.label]) {
case CVMLModifier.SECTION:
if (typeof section === "object" && section.items.length > 0) {
if (item.content !== "") {
section.items.push(item);
}
contents.push(section);
}
section = { section: line.body, items: [] };
break;
case CVMLModifier.EMPHASIS:
item.label = line.body;
item.type = "emphasis";
break;
case CVMLModifier.LABEL:
if (item.label !== "") {
section.items.push(item);
item = {};
} else {
item.label = line.body;
}
break;
case CVMLModifier.RULE:
if (line.body.indexOf('=') !== -1) {
item = { type: "separator", label: "", content: "" };
section.items.push(item);
item = { label: "", content: "", type: "text" };
}
break;
case CVMLModifier.PAGEBREAK:
if (line.body.indexOf('.') !== -1) {
item = { type: "pagebreak", label: "", content: "" };
section.items.push(item);
item = { label: "", content: "", type: "text" };
}
break;
case CVMLModifier.PLAIN:
item.content += line.body;
break;
default:
// console.log("### SKIPPING..");
}
if (item.content !== "") {
section.items.push(item);
item = { label: "", content: "", type: "text" };
}
}
l++;
}
contents.push(section);
if (DEBUG) console.log("Successfully parsed " + lines.length + " of CVML!");
this.document.contents = contents;
return contents;
};
CVMLParser.prototype.parseLine = function(line) {
var type = {}
, content = "";
type = this.identifyModifier( line.substring(0,3) ) || CVMLModifier.UNRECOGNISED;
content = line.substr(4);
if (DEBUG) {
console.log("");
if (type.label === "SECTION") {
// console.log("==============================================================");
console.log("");
console.log("##############################################################");
console.log(content);
console.log("##############################################################");
} else if (type.label === "LABEL") {
console.log("[[[ "+content+" ]]]");
} else if (type.label === "EMPHASIS") {
console.log("<<<[[[ "+content+" ]]]>>>");
} else if (type.label === "RULE") {
console.log("\n= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =\n");
} else {
console.log(content);
// console.log("--------------------------------------------------------------");
// console.log("TYPE: " + type.label + ", Length: " + content.length + " characters.")
// console.log("");
}
}
return { type: type, body: content };
};
CVMLParser.prototype.webify = function() {
var section;
for (var i = 0; i < this.document.contents.length; i++) {
section = this.document.contents[i];
for (var j = 0; j < section.items.length; j++) {
if (section.items[j].label !== "")
section.items[j].label = md.toHTML(section.items[j].label);
if (section.items[j].content !== "")
section.items[j].content = md.toHTML(section.items[j].content);
}
this.document.contents[i] = section;
}
if (DEBUG) console.log("### MARKDOWN HAS BEEN CONVERTED TO HTML.");
}
// Exports ////////////////////////////////////////////////////////////////////
module.exports = function(markup, toHTML) {
var parser = new CVMLParser();
var stub = parser.parseMetaData(markup);
parser.parseContents(stub);
if (toHTML) parser.webify();
return parser.document;
};