-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
656 lines (603 loc) · 17.8 KB
/
parser.go
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
// SPDX-FileCopyrightText: 2020 M. Shulhan <[email protected]>
// SPDX-License-Identifier: GPL-3.0-or-later
package asciidoctor
import (
"bytes"
"strings"
"git.sr.ht/~shulhan/pakakeh.go/lib/ascii"
)
const (
elKindUnknown int = iota
elKindDocHeader // Wrapper.
elKindPreamble // Wrapper.
elKindDocContent // Wrapper.
elKindSectionL0 // Line started with "="
elKindSectionL1 // Line started with "=="
elKindSectionL2 // 5: Line started with "==="
elKindSectionL3 // Line started with "===="
elKindSectionL4 // Line started with "====="
elKindSectionL5 // Line started with "======"
elKindSectionDiscrete // "[discrete]"
elKindParagraph // 10: Wrapper.
elKindLiteralParagraph // Line start with space
elKindBlockAudio // "audio::"
elKindBlockExample // "===="
elKindBlockExcerpts // "____"
elKindBlockImage // "image::"
elKindBlockListing // "----"
elKindBlockListingNamed // "[listing]"
elKindBlockLiteral // "...."
elKindBlockLiteralNamed // "[literal]"
elKindBlockOpen // 20: Block wrapped with "--"
elKindBlockPassthrough // Block wrapped with "++++"
elKindBlockSidebar // "****"
elKindBlockVideo // "video::"
elKindCrossReference // "<<" REF ("," LABEL) ">>"
elKindFootnote // footnote:id[]
elKindInlineID // "[[" REF_ID "]]" TEXT
elKindInlineIDShort // "[#" REF_ID "]#" TEXT "#"
elKindInlineImage // Inline macro for "image:"
elKindInlinePass // Inline macro for passthrough "pass:"
elKindInlineParagraph //
elKindListOrdered // Wrapper.
elKindListOrderedItem // 30: Line start with ". "
elKindListUnordered // Wrapper.
elKindListUnorderedItem // Line start with "* " or "- "
elKindListDescription // Wrapper.
elKindListDescriptionItem // Line that has "::" + WSP
elKindMacroTOC // "toc::[]"
elKindPassthrough // Text wrapped inside "+"
elKindPassthroughDouble // Text wrapped inside "++"
elKindPassthroughTriple // Text wrapped inside "+++"
elKindSymbolQuoteDoubleBegin // The ("`)
elKindSymbolQuoteDoubleEnd // 40: The (`")
elKindSymbolQuoteSingleBegin // The ('`)
elKindSymbolQuoteSingleEnd // The (`')
elKindTable // "|==="
elKindText //
elKindTextBold // Text wrapped by "*"
elKindTextItalic // Text wrapped by "_"
elKindTextMono // Text wrapped by "`"
elKindTextSubscript // Word wrapped by '~'
elKindTextSuperscript // Word wrapped by '^'
elKindUnconstrainedBold // 50: Text wrapped by "**"
elKindUnconstrainedItalic // Text wrapped by "__"
elKindUnconstrainedMono // Text wrapped by "``"
elKindURL // Anchor text.
lineKindAdmonition // "LABEL: WSP"
lineKindAttribute // ":" ATTR_NAME ":" (ATTR_VALUE)
lineKindAttributeElement // "[" ATTR_NAME ("=" ATTR_VALUE)"]"
lineKindBlockComment // Block start and end with "////"
lineKindBlockTitle // Line start with ".<alnum>"
lineKindComment // Line start with "//"
lineKindEmpty // 60: LF
lineKindHorizontalRule // "'''", "---", "- - -", "***", "* * *"
lineKindID // "[[" REF_ID "]]"
lineKindIDShort // "[#" REF_ID "]#" TEXT "#"
lineKindInclude // "include::"
lineKindListContinue // "+" LF
lineKindPageBreak // "<<<"
lineKindStyleClass // "[.x.y]"
lineKindText // 1*VCHAR
)
const (
attrNameAlign = `align`
attrNameAlt = `alt`
attrNameAttribution = `attribution`
attrNameCaption = `caption`
attrNameCitation = `citation`
attrNameCols = `cols`
attrNameDiscrete = `discrete`
attrNameEnd = `end`
attrNameFloat = `float`
attrNameFrame = `frame`
attrNameGrid = `grid`
attrNameHeight = `height`
attrNameHref = `href`
attrNameIcons = `icons`
attrNameLang = `lang`
attrNameLink = `link`
attrNameOptions = `options`
attrNameOpts = `opts`
attrNamePoster = `poster`
attrNameRefText = `reftext`
attrNameRel = `rel`
attrNameRole = `role`
attrNameSource = `source`
attrNameSrc = `src`
attrNameStart = `start`
attrNameStripes = `stripes`
attrNameTarget = `target`
attrNameTheme = `theme`
attrNameTitle = `title`
attrNameVimeo = `vimeo`
attrNameWidth = `width`
attrNameYoutube = `youtube`
attrNameYoutubeLang = `hl`
)
const (
attrValueAll = `all`
attrValueAuthor = `author`
attrValueBare = `bare`
attrValueBlank = `_blank`
attrValueCols = `cols`
attrValueContent = `content`
attrValueEmail = `email`
attrValueEven = `even`
attrValueFont = `font`
attrValueFooter = `footer`
attrValueHeader = `header`
attrValueHover = `hover`
attrValueImage = `image`
attrValueNoopener = `noopener`
attrValueNoHeader = `noheader`
attrValueNone = `none`
attrValueOdd = `odd`
attrValueRevDate = `revdate`
attrValueRevNumber = `revnumber`
attrValueRows = `rows`
attrValueSides = `sides`
attrValueTitle = attrNameTitle
attrValueTopbot = `topbot`
)
const (
classNameArabic = `arabic`
classNameChecklist = `checklist`
classNameFitContent = `fit-content`
classNameFrameAll = `frame-all`
classNameFrameEnds = `frame-ends`
classNameFrameNone = `frame-none`
classNameFrameSides = `frame-sides`
classNameGridAll = `grid-all`
classNameGridCols = `grid-cols`
classNameGridNone = `grid-none`
classNameGridRows = `grid-rows`
classNameLoweralpha = `loweralpha`
classNameLowerroman = `lowerroman`
classNameStretch = `stretch`
classNameStripesAll = `stripes-all`
classNameStripesEven = `stripes-even`
classNameStripesHover = `stripes-hover`
classNameStripesOdd = `stripes-odd`
classNameTableblock = `tableblock`
classNameUpperalpha = `upperalpha`
classNameUpperroman = `upperroman`
)
const (
optNameAutoplay = `autoplay`
optNameAutowidth = `autowidth`
optNameControls = `controls`
optNameLoop = `loop`
optNameNocontrols = `nocontrols`
optVideoFullscreen = `fs`
optVideoModest = `modest`
optVideoNofullscreen = `nofullscreen`
optVideoPlaylist = `playlist`
optVideoYoutubeModestbranding = `modestbranding`
)
const (
prefixInclude = `include::`
)
const (
admonitionCaution = `CAUTION`
admonitionImportant = `IMPORTANT`
admonitionNote = `NOTE`
admonitionTip = `TIP`
admonitionWarning = `WARNING`
)
const (
_ int64 = iota
styleSectionColophon = 1 << (iota - 1)
styleSectionAbstract
styleSectionDiscrete
styleSectionPreface
styleSectionDedication
styleSectionPartIntroduction
styleSectionAppendix
styleSectionGlossary
styleSectionBibliography
styleSectionIndex
styleListMarkerCircle
styleListMarkerDisc
styleListMarkerNone
styleListMarkerSquare
styleListMarkerUnstyled
styleParagraphLead
styleParagraphNormal
styleLink
styleNumberingArabic
styleNumberingDecimal
styleNumberingLoweralpha
styleNumberingUpperalpha
styleNumberingLowerroman
styleNumberingUpperroman
styleNumberingLowergreek
styleDescriptionHorizontal
styleDescriptionQandA
styleAdmonition
styleBlockListing
styleQuote
styleSource
styleTextBold
styleTextItalic
styleTextMono
styleVerse
)
const (
symbolQuoteDoubleBegin = `“`
symbolQuoteDoubleEnd = `”`
symbolQuoteSingleBegin = `‘`
symbolQuoteSingleEnd = `’`
symbolChecked = `✓`
symbolUnchecked = `❏`
)
var adocStyles = map[string]int64{
`colophon`: styleSectionColophon,
`abstract`: styleSectionAbstract,
`preface`: styleSectionPreface,
`dedication`: styleSectionDedication,
attrNameDiscrete: styleSectionDiscrete,
`partintro`: styleSectionPartIntroduction,
`appendix`: styleSectionAppendix,
`glossary`: styleSectionGlossary,
`bibliography`: styleSectionBibliography,
`index`: styleSectionIndex,
`circle`: styleListMarkerCircle,
`disc`: styleListMarkerDisc,
`none`: styleListMarkerNone,
`square`: styleListMarkerSquare,
`unstyled`: styleListMarkerUnstyled,
`.lead`: styleParagraphLead,
`.normal`: styleParagraphNormal,
`arabic`: styleNumberingArabic,
`decimal`: styleNumberingDecimal,
`loweralpha`: styleNumberingLoweralpha,
`upperalpha`: styleNumberingUpperalpha,
`lowerroman`: styleNumberingLowerroman,
`upperroman`: styleNumberingUpperroman,
`lowergreek`: styleNumberingLowergreek,
`horizontal`: styleDescriptionHorizontal,
`qanda`: styleDescriptionQandA,
admonitionCaution: styleAdmonition,
admonitionImportant: styleAdmonition,
admonitionNote: styleAdmonition,
admonitionTip: styleAdmonition,
admonitionWarning: styleAdmonition,
`listing`: styleBlockListing,
`quote`: styleQuote,
`source`: styleSource,
`verse`: styleVerse,
}
var _attrRef = map[string]string{
`amp`: `&`,
`apos`: htmlSymbolSingleQuote, // '
`asterisk`: `*`,
`backslash`: `\`,
`backtick`: "`",
`blank`: ``,
`brvbar`: htmlSymbolBrokenVerticalBar, // ¦
`caret`: `^`,
`cpp`: `C++`,
`deg`: htmlSymbolDegreeSign, // °
`empty`: ``,
`endsb`: `]`,
`gt`: `>`,
`ldquo`: htmlSymbolLeftDoubleQuote,
`lsquo`: htmlSymbolLeftSingleQuote,
`lt`: `<`,
`nbsp`: htmlSymbolNonBreakingSpace,
`plus`: htmlSymbolPlus,
`quot`: htmlSymbolDoubleQuote,
`rdquo`: htmlSymbolRightDoubleQuote,
`rsquo`: htmlSymbolRightSingleQuote,
`sp`: ` `,
`startsb`: `[`,
`tilde`: `~`,
`two-colons`: `::`,
`two-semicolons`: `;;`,
`vbar`: `|`,
`wj`: htmlSymbolWordJoiner,
`zwsp`: htmlSymbolZeroWidthSpace,
}
func applySubstitutions(doc *Document, content []byte) []byte {
var (
raw = bytes.TrimRight(content, " \n")
newraw = make([]byte, 0, len(raw))
buf = bytes.NewBuffer(newraw)
c byte
x int
newRaw []byte
ok bool
)
for x < len(raw) {
c = raw[x]
// We use if-condition with "continue" to break and continue
// the for-loop, so it is not possible to use switch-case
// here.
//
//nolint:gocritic
if c == '{' {
newRaw, ok = parseAttrRef(doc, raw, x)
if ok {
raw = newRaw
continue
}
buf.WriteByte(c)
} else if c == '<' {
buf.WriteString(htmlSymbolLessthan)
} else if c == '>' {
buf.WriteString(htmlSymbolGreaterthan)
} else if c == '&' {
buf.WriteString(htmlSymbolAmpersand)
} else {
buf.WriteByte(c)
}
x++
}
return buf.Bytes()
}
// generateID generate ID for anchor.
// This function follow the [Mozilla specification].
//
// The generated ID is affected by the following document attributes:
// `idprefix` and `idseparator`.
//
// The idprefix must be ASCII string.
// It must start with '_', '-', or ASCII letters, otherwise the '_' will be
// prepended.
// If one of the character is not valid, it will replaced with '_'.
//
// The `idseparator` can be empty or single ASCII character ('_' or '-',
// ASCII letter, or digit).
// It is used to replace invalid characters in the src.
//
// [Mozilla specification]: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id.
func generateID(doc *Document, str string) string {
var (
idSep byte = '_'
v string
bout []byte
c byte
ok bool
)
v, ok = doc.Attributes.Entry[docAttrIDPrefix]
if ok {
v = strings.TrimSpace(v)
if len(v) > 0 {
str = v + str
}
}
bout = make([]byte, 0, len(str))
v, ok = doc.Attributes.Entry[docAttrIDSeparator]
if ok {
v = strings.TrimSpace(v)
if len(v) == 0 {
// idseparator document attribute exist and set to
// empty.
idSep = 0
} else {
c = v[0]
if c == '_' || c == '-' || ascii.IsAlnum(c) {
idSep = c
}
}
}
for _, c = range []byte(str) {
if c == '_' || c == '-' || ascii.IsAlnum(c) {
if c >= 'A' && c <= 'Z' {
bout = append(bout, c+32)
} else {
bout = append(bout, c)
}
} else if idSep != 0 {
bout = append(bout, idSep)
}
}
if len(bout) == 0 {
bout = append(bout, '_')
} else if !ascii.IsAlpha(bout[0]) && bout[0] != '_' {
bout = append(bout, '_')
copy(bout[1:], bout)
bout[0] = '_'
}
return string(bout)
}
func isAdmonition(line []byte) bool {
var x int
switch {
case bytes.HasPrefix(line, []byte(admonitionCaution)):
x = len(admonitionCaution)
case bytes.HasPrefix(line, []byte(admonitionImportant)):
x = len(admonitionImportant)
case bytes.HasPrefix(line, []byte(admonitionNote)):
x = len(admonitionNote)
case bytes.HasPrefix(line, []byte(admonitionTip)):
x = len(admonitionTip)
case bytes.HasPrefix(line, []byte(admonitionWarning)):
x = len(admonitionWarning)
default:
return false
}
if x >= len(line) {
return false
}
if line[x] == ':' {
x++
if x >= len(line) {
return false
}
if line[x] == ' ' || line[x] == '\t' {
return true
}
}
return false
}
func isLineDescriptionItem(line []byte) bool {
var (
x int
)
_, x = indexUnescape(line, []byte(`:: `))
if x > 0 {
return true
}
_, x = indexUnescape(line, []byte("::\t"))
if x > 0 {
return true
}
_, x = indexUnescape(line, []byte(`::`))
return x > 0
}
func isStyleAdmonition(style int64) bool {
return style&styleAdmonition > 0
}
func isStyleQuote(style int64) bool {
return style&styleQuote > 0
}
func isStyleVerse(style int64) bool {
return style&styleVerse > 0
}
// isValidID will return true if id is valid HTML ref ID according to
// [Mozilla specification], where the first character is either '-', '_', or
// ASCII letter, and the rest is either '-', '_', ASCII letter or digit.
//
// [Mozilla specification]: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id.
func isValidID(id []byte) bool {
var (
x int
c byte
)
for x, c = range id {
if x == 0 {
if !(c == '-' || c == '_' || ascii.IsAlpha(c)) {
return false
}
continue
}
if c == '-' || c == '_' || c == '.' || ascii.IsAlnum(c) {
continue
}
return false
}
return true
}
// parseAttrRef parse the attribute reference, an attribute key wrapped by
// "{" "}". If the attribute reference exist, replace the content with the
// attribute value and reset the parser state to zero.
func parseAttrRef(doc *Document, content []byte, x int) (newContent []byte, ok bool) {
var (
raw = content[x+1:]
name string
attrValue string
attrName []byte
rest []byte
idx int
)
attrName, idx = indexByteUnescape(raw, '}')
if idx < 0 {
return nil, false
}
name = string(bytes.TrimSpace(bytes.ToLower(attrName)))
attrValue, ok = _attrRef[name]
if !ok {
attrValue, ok = doc.Attributes.Entry[name]
if !ok {
return nil, false
}
// Add prefix "mailto:" if the ref name start with email, so
// it can be parsed by caller as macro link.
if name == `email` || strings.HasPrefix(name, `email_`) {
attrValue = `mailto:` + attrValue + `[` + attrValue + `]`
}
}
rest = content[x+idx+2:]
newContent = make([]byte, 0, len(attrValue)+len(rest))
newContent = append(newContent, attrValue...)
newContent = append(newContent, rest...)
return newContent, true
}
// parseClosedBracket parse the text in input until we found the last close
// bracket.
// It will skip any open-close brackets inside input.
// For example, parsing ("test:[]]", '[', ']') will return ("test:[]", 7).
//
// If no closed bracket found it will return (nil, -1).
func parseClosedBracket(input []byte, openb, closedb byte) (out []byte, idx int) {
var (
openCount int
c byte
isEsc bool
)
out = make([]byte, 0, len(input))
for idx, c = range input {
if c == '\\' {
if isEsc {
out = append(out, '\\')
isEsc = false
} else {
isEsc = true
}
continue
}
if c == closedb {
if isEsc {
out = append(out, c)
isEsc = false
continue
}
if openCount == 0 {
return out, idx
}
openCount--
out = append(out, c)
continue
}
if c == openb {
out = append(out, c)
if isEsc {
isEsc = false
} else {
openCount++
}
continue
}
if isEsc {
out = append(out, '\\')
isEsc = false
}
out = append(out, c)
}
// No closed bracket found.
return nil, -1
}
// parseIDLabel parse the string "ID (,LABEL)" into id and label.
// It will return empty id and label if ID is not valid.
func parseIDLabel(s []byte) (id, label []byte) {
var idLabel = bytes.Split(s, []byte(`,`))
id = idLabel[0]
if len(idLabel) >= 2 {
label = idLabel[1]
}
if isValidID(idLabel[0]) {
return id, label
}
return nil, nil
}
func parseInlineMarkup(doc *Document, content []byte) (container *element) {
var pi = newInlineParser(doc, content)
pi.do()
return pi.container
}
// parseStyle get the style based on string value.
func parseStyle(styleName string) (styleKind int64) {
// Check for admonition label first...
styleKind = adocStyles[styleName]
if styleKind > 0 {
return styleKind
}
styleName = strings.ToLower(styleName)
styleKind = adocStyles[styleName]
if styleKind > 0 {
return styleKind
}
return 0
}