-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.js
333 lines (315 loc) · 10.1 KB
/
parse.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
const assert = require('nanoassert')
const commonmark = require('commonmark')
const fixStrings = require('commonform-fix-strings')
const grayMatter = require('gray-matter')
const has = require('has')
const VERSION_SUFFIX_RE = new RegExp('/' + require('legal-versioning-regexp') + '$')
module.exports = markdown => {
assert(typeof markdown === 'string')
const split = grayMatter(markdown)
const parser = new commonmark.Parser()
const parsed = parser.parse(split.content)
const walker = parsed.walker()
const form = emptyForm()
const contentStack = [form]
const childStack = [null] // Root form is not a child.
const contextStack = []
let event
let lastHeadingLevel = 0
const UNSUPPORTED_TYPES = [
'block_quote',
'code_block',
'image',
'thematic_break'
]
let currentForm
while ((event = walker.next())) {
const node = event.node
const type = node.type
const literal = node.literal
if (UNSUPPORTED_TYPES.indexOf(type) !== -1) {
throw new Error('Unsupported: ' + type)
}
if (type === 'text' || type === 'code' || type === 'softbreak') {
handleText(literal, node)
} else if (type === 'html_block' || type === 'html_inline') {
if (
literal &&
literal.startsWith('<!--') &&
literal.endsWith('-->')
) continue
throw new Error('Unsupported: ' + node.type)
} else if (event.entering) {
if (type === 'item') {
unshiftChild()
} else if (type === 'strong') {
addContentElement({ definition: '' })
} else if (type === 'emph') {
addContentElement({ use: '' })
} else if (type === 'link') {
addContentElement({ placeholder: true })
} else if (type === 'heading') {
const level = node.level
if (level === lastHeadingLevel) {
shiftChild()
} else if (level > lastHeadingLevel) {
const depth = level - lastHeadingLevel
if (depth > 1) throw new Error('Jump in heading levels')
} else if (level < lastHeadingLevel) {
for (let i = level; i <= lastHeadingLevel; i++) {
shiftChild()
}
}
unshiftChild()
lastHeadingLevel = level
}
contextStack.unshift({ type, level: node.level || undefined })
} else {
if (
type === 'item' ||
type === 'strong' ||
type === 'emph' ||
type === 'link'
) {
shiftChild()
}
contextStack.shift()
}
}
function shiftChild () {
contentStack.shift()
childStack.shift()
}
function unshiftChild () {
const child = { form: emptyForm() }
currentForm = contentStack[0]
currentForm.content.push(child)
contentStack.unshift(child.form)
childStack.unshift(child)
}
function addContentElement (element) {
const currentForm = contentStack[0]
currentForm.content.push(element)
contentStack.unshift(element)
childStack.unshift(null)
}
function handleText (text, node) {
assert(typeof node === 'object')
assert(typeof node.type === 'string')
assert(typeof node.literal === 'string' || node.type === 'softbreak')
assert(node.type === 'text' || node.type === 'code' || node.type === 'softbreak')
const contextType = contextStack[0].type
if (contextType === 'heading') {
const currentChild = childStack[0]
if (!currentChild.heading) currentChild.heading = text
else currentChild.heading += text
} else if (contextType === 'strong') {
contentStack[0].definition += text
} else if (contextType === 'emph') {
contentStack[0].use += text
} else if (contextType === 'link') {
const first = contentStack[0]
delete first.placeholder
if (first.link) {
first.link += link
} else if (first.reference) {
first.reference += text
} else if (text.startsWith('https://') || text.startsWith('http://')) {
first.link = text
} else {
first.reference = text
}
} else if (contextType === 'paragraph') {
if (node.type === 'code') {
// Insert the label into the blank for now.
// `extractDirections` will separate it later.
contentStack[0].content.push({ blank: text })
} else {
contentStack[0].content.push(text)
}
} else if (contextType === 'softbreak') {
contentStack[0].content.push(' ')
} else {
assert(false, 'Unknown Context Type: ' + contextType)
}
}
recursivelyFixStrings(form)
recursivelyPromoteComponents(form)
recursivelyMarkConspicuous(form)
recursivelyRemoveHeadings(form)
recursivelyHandleContinuations(form)
const returned = extractDirections(form)
returned.frontMatter = split.data
return returned
}
function emptyForm () {
return { content: [] }
}
function recursivelyFixStrings (form) {
form.content.forEach(element => {
if (has(element, 'form')) {
recursivelyFixStrings(element.form)
}
})
fixStrings(form)
}
const BLANK_RE = /^"(?<value>[^"]+)" for blank (?<number>[1-9]?[0-9]*)$/
function recursivelyPromoteComponents (form) {
form.content.forEach((element, index) => {
if (!has(element, 'form')) return
const childForm = element.form
const childContent = childForm.content
const firstElement = childContent[0]
const startsWithLink = firstElement && has(firstElement, 'link')
if (!startsWithLink) return recursivelyPromoteComponents(element.form)
const { link: url } = firstElement
const versionMatch = VERSION_SUFFIX_RE.exec(url)
if (!versionMatch) {
throw new Error('Invalid component URL: ' + url)
}
const component = {
component: url.replace(VERSION_SUFFIX_RE, ''),
version: versionMatch[0].slice(1),
substitutions: {
terms: {},
headings: {},
blanks: {}
}
}
if (element.heading) component.heading = element.heading
const secondElement = childContent[1]
if (secondElement) {
if (secondElement !== ' substituting:') return fail()
const remainder = childContent.slice(2)
for (let index = 0; index < remainder.length; index++) {
const child = remainder[index]
if (
typeof child !== 'object' ||
!has(child, 'form') ||
typeof child.form !== 'object' ||
!has(child.form, 'content')
) return fail()
const content = child.form.content
const first = content[0]
const second = content[1]
const third = content[2]
if (has(first, 'use')) {
if (second === ' for ' && has(third, 'use')) {
component.substitutions.terms[third.use] = first.use
} else return fail()
} else if (has(first, 'reference')) {
if (second === ' for ' && has(third, 'reference')) {
component.substitutions.headings[third.reference] = first.reference
} else return fail()
} else if (typeof first === 'string' && !second && !third) {
const blankMatch = BLANK_RE.exec(first)
if (!blankMatch) return fail()
component.substitutions.blanks[parseInt(blankMatch.groups.number)] = blankMatch.groups.value
} else {
fail()
}
}
}
form.content[index] = component
function fail () {
throw new Error(
'Invalid content after component URL: ' + url
)
}
})
}
function recursivelyMarkConspicuous (form) {
form.content.forEach(element => {
if (!has(element, 'form')) return
const content = element.form.content
const firstElement = content[0]
const conspicuous = (
typeof firstElement === 'string' &&
firstElement.indexOf('!!!') === 0
)
if (conspicuous) {
content[0] = firstElement.replace(/^!!!\s*/, '')
element.form.conspicuous = 'yes'
}
recursivelyMarkConspicuous(element.form)
})
}
function recursivelyRemoveHeadings (form) {
form.content.forEach(element => {
const hasForm = has(element, 'form')
const formOrComponent = hasForm || has(element, 'repository')
if (!formOrComponent) return
const heading = element.heading
if (heading === '(No Heading)') delete element.heading
if (hasForm) recursivelyRemoveHeadings(element.form)
})
}
function recursivelyHandleContinuations (form) {
const spliceList = []
form.content.forEach((element, index) => {
if (!has(element, 'form')) return
const heading = element.heading
if (heading !== '(Continuing)') {
return recursivelyHandleContinuations(element.form)
}
const priorSibling = form.content[index - 1]
element.form.content.forEach(element => {
priorSibling.form.content.push(element)
})
spliceList.push(index)
recursivelyHandleContinuations(element.form)
})
spliceList.forEach(index => {
form.content.splice(index, 1)
})
}
function extractDirections (formWithBlankLabels, directions, path) {
directions = directions || []
path = path || []
const newContent = []
formWithBlankLabels.content.forEach((element, index) => {
const elementIsObject = typeof element === 'object'
const elementIsBlank = (
elementIsObject &&
has(element, 'blank')
)
if (elementIsBlank) {
const label = element.blank
newContent.push(createBlank())
directions.push({
label,
blank: path.concat('content', index)
})
} else {
const elementIsChild = (
elementIsObject &&
has(element, 'form')
)
if (elementIsChild) {
const childPath = path.concat('content', index, 'form')
const result = extractDirections(element.form, directions, childPath)
const newChild = { form: result.form }
if (has(element, 'heading')) {
newChild.heading = element.heading
}
if (has(element, 'conspicuous')) {
newChild.form.conspicuous = element.form.conspicuous
}
newContent.push(newChild)
} else {
newContent.push(element)
}
}
})
const newForm = { content: newContent }
if (has(formWithBlankLabels, 'conspicuous')) {
newForm.conspicuous = formWithBlankLabels.conspicuous
}
return {
form: newForm,
directions
}
function createBlank () {
return { blank: '' }
}
}