-
Notifications
You must be signed in to change notification settings - Fork 0
/
macro.go
229 lines (197 loc) · 4.18 KB
/
macro.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
// SPDX-FileCopyrightText: 2022 M. Shulhan <[email protected]>
// SPDX-License-Identifier: GPL-3.0-or-later
package asciidoctor
import (
"strconv"
"git.sr.ht/~shulhan/pakakeh.go/lib/ascii"
)
// List of macro names.
const (
macroFTP = `ftp`
macroFootnote = `footnote`
macroHTTP = `http`
macroHTTPS = `https`
macroIRC = `irc`
macroImage = `image`
macroLink = `link`
macroMailto = `mailto`
macroPass = `pass`
)
var (
_macroKind = map[string]int{
macroFTP: elKindURL,
macroFootnote: elKindFootnote,
macroHTTP: elKindURL,
macroHTTPS: elKindURL,
macroIRC: elKindURL,
macroImage: elKindInlineImage,
macroLink: elKindURL,
macroMailto: elKindURL,
macroPass: elKindText,
}
)
type macro struct {
content *element
// key represent the URL in elKindURL or elKindImage;
// or ID in elKindFootnote.
// For ID, it could be empty.
key string
// val represent the text for URL or image and footnote.
rawContent []byte
// level represent footnote index number.
level int
}
// parseMacroName parse inline macro.
//
// The parser read the content textBefore in backward order until it found one
// of macro name.
// Macro can be escaped using the backslash, for example "\link:", and it will
// be ignored.
//
// If macro name and value valid it will return the element for that macro.
func parseMacroName(textBefore []byte) (macroName string) {
var (
x = len(textBefore) - 1
ok bool
)
for x >= 0 {
if !ascii.IsAlpha(textBefore[x]) {
return ``
}
macroName = string(textBefore[x:])
_, ok = _macroKind[macroName]
if ok {
break
}
x--
}
if !ok {
return ``
}
x--
if x >= 0 {
if textBefore[x] == '\\' {
// Macro is escaped.
return ``
}
}
return macroName
}
// parseMacroFootnote parse the footnote macro,
//
// "footnote:" [ REF_ID ] "[" STRING "]"
//
// The text content does not have "footnote:".
//
// The REF_ID, reference the previous footnote defined with the same.
// The first footnote with REF_ID, should have the STRING defined.
// The next footnote with the same REF_ID, should not have the STRING
// defined; if its already defined, the STRING is ignored.
//
// It will return an element if footnote is valid.
func parseMacroFootnote(doc *Document, text []byte) (el *element, n int) {
var (
mcr *macro
id string
key string
vbytes []byte
x int
exist bool
)
vbytes, x = indexByteUnescape(text, '[')
if x > 0 {
if !isValidID(vbytes) {
return nil, 0
}
id = string(vbytes)
}
n = x + 1
text = text[n:]
vbytes, x = indexByteUnescape(text, ']')
if x < 0 {
return nil, 0
}
n += x + 2
mcr, exist = doc.registerFootnote(id, vbytes)
if exist {
id = ``
vbytes = nil
} else {
// Footnote without explicit ID will be set the key with its
// level.
key = strconv.FormatInt(int64(mcr.level), 10)
}
el = &element{
key: key,
raw: vbytes,
kind: elKindFootnote,
level: mcr.level,
elementAttribute: elementAttribute{
ID: id,
},
}
if vbytes != nil {
mcr.content = parseInlineMarkup(doc, vbytes)
}
return el, n
}
// parseMacroPass parse the macro for passthrough.
//
// "pass:" *(SUB) "[" TEXT "]"
//
// SUB = SUB_KIND *("," SUB_KIND)
//
// SUB_KIND = "c" / "q" / "a" / "r" / "m" / "p" / "n" / "v"
func parseMacroPass(text []byte) (el *element, n int) {
var (
x int
c byte
)
el = &element{
kind: elKindInlinePass,
}
// Consume the substitutions until "[" or spaces.
// Spaces automatically stop the process.
// Other characters except the sub kinds are ignored.
for ; x < len(text); x++ {
c = text[x]
if c == '[' {
break
}
if c == ',' {
continue
}
if ascii.IsSpace(c) {
return nil, 0
}
switch c {
case 'c':
el.applySubs |= passSubChar
case 'q':
el.applySubs |= passSubQuote
case 'a':
el.applySubs |= passSubAttr
case 'r':
el.applySubs |= passSubRepl
case 'm':
el.applySubs |= passSubMacro
case 'p':
el.applySubs |= passSubPostRepl
case 'n':
el.applySubs |= passSubNormal
case 'v':
el.applySubs |= passSubChar
}
}
if c != '[' {
return nil, 0
}
x++
n = x
el.raw, x = parseClosedBracket(text[x:], '[', ']')
if x < 0 {
return nil, 0
}
n += x + 2
return el, n
}