-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement_attribute.go
228 lines (208 loc) · 4.19 KB
/
element_attribute.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
// SPDX-FileCopyrightText: 2020 M. Shulhan <ms@kilabit.info>
// SPDX-License-Identifier: GPL-3.0-or-later
package asciidoctor
import (
"bytes"
"strings"
libstrings "git.sr.ht/~shulhan/pakakeh.go/lib/strings"
)
type elementAttribute struct {
Attrs map[string]string
ID string
rawStyle string
roles []string
options []string
style int64
pos int
}
func (ea *elementAttribute) addRole(role string) {
role = strings.TrimSpace(role)
if len(role) == 0 {
return
}
ea.roles = libstrings.AppendUniq(ea.roles, role)
}
func (ea *elementAttribute) htmlClasses() string {
if len(ea.roles) == 0 {
return ``
}
return strings.Join(ea.roles, ` `)
}
// parseElementAttribute parse list of attributes in between `[` `]`.
//
// BLOCK_ATTRS = BLOCK_ATTR *("," BLOCK_ATTR)
//
// BLOCK_ATTR = ATTR_NAME ( "=" (DQUOTE) ATTR_VALUE (DQUOTE) )
//
// ATTR_NAME = WORD
//
// ATTR_VALUE = STRING
//
// The attribute may not have a value.
//
// If the attribute value contains space or comma, it must be wrapped with
// double quote.
// The double quote on value will be removed when stored on options.
func (ea *elementAttribute) parseElementAttribute(raw []byte) {
raw = bytes.TrimSpace(raw)
if len(raw) == 0 {
return
}
if raw[0] != '[' {
return
}
if raw[len(raw)-1] != ']' {
return
}
raw = raw[1 : len(raw)-1]
if len(raw) == 0 {
return
}
var (
c = raw[0]
str string
buf []byte
prevc byte
x int
isEscaped bool
)
if c == '#' || c == '.' || c == '%' {
prevc = c
x = 1
}
for ; x < len(raw); x++ {
c = raw[x]
switch c {
case '"':
isEscaped = false
x++
for ; x < len(raw); x++ {
if raw[x] == '\\' {
if isEscaped {
buf = append(buf, '\\')
isEscaped = false
} else {
isEscaped = true
}
continue
}
if raw[x] == '"' {
break
}
buf = append(buf, raw[x])
}
case ',':
str = string(bytes.TrimSpace(buf))
ea.setByPreviousChar(prevc, str)
ea.pos++
buf = buf[:0]
prevc = c
case '#', '%':
ea.setByPreviousChar(prevc, string(bytes.TrimSpace(buf)))
buf = buf[:0]
prevc = c
case '.':
if ea.style == styleQuote || ea.style == styleVerse {
// Make the '.' as part of attribution.
if prevc == ',' {
buf = append(buf, c)
continue
}
} else if ea.style == styleLink && ea.pos == 0 {
buf = append(buf, c)
continue
}
ea.setByPreviousChar(prevc, string(bytes.TrimSpace(buf)))
buf = buf[:0]
prevc = c
default:
buf = append(buf, c)
}
}
if len(buf) > 0 {
ea.setByPreviousChar(prevc, string(bytes.TrimSpace(buf)))
}
}
func (ea *elementAttribute) parseNamedValue(str string) {
if ea.Attrs == nil {
ea.Attrs = make(map[string]string)
}
var (
kv = strings.Split(str, `=`)
key = kv[0]
val = strings.TrimSpace(kv[1])
)
if len(val) == 0 {
ea.Attrs[key] = ``
return
}
if val[0] == '"' {
val = val[1:]
}
if val[len(val)-1] == '"' {
val = val[:len(val)-1]
}
var (
rawvals = strings.Split(val, `,`)
vals = make([]string, 0, len(rawvals))
v string
)
for _, v = range rawvals {
v = strings.TrimSpace(v)
if len(v) == 0 {
continue
}
vals = append(vals, v)
}
switch key {
case attrNameOptions, attrNameOpts:
ea.options = append(ea.options, vals...)
case attrNameRole:
ea.roles = append(ea.roles, vals...)
default:
ea.Attrs[key] = val
}
}
func (ea *elementAttribute) setByPreviousChar(prevc byte, str string) {
switch prevc {
case 0:
if strings.IndexByte(str, '=') > 0 {
ea.parseNamedValue(str)
} else {
ea.rawStyle = str
ea.style = parseStyle(str)
}
case '#':
ea.ID = str
case '.':
ea.addRole(str)
case '%':
ea.options = append(ea.options, str)
case ',':
if strings.IndexByte(str, '=') > 0 {
ea.parseNamedValue(str)
} else {
if ea.Attrs == nil {
ea.Attrs = make(map[string]string)
}
switch ea.pos {
case 1:
switch ea.style {
case styleQuote, styleVerse:
ea.Attrs[attrNameAttribution] = str
case styleSource:
ea.Attrs[attrNameSource] = str
default:
ea.Attrs[str] = ``
}
case 2:
switch ea.style {
case styleQuote, styleVerse:
ea.Attrs[attrNameCitation] = str
default:
ea.Attrs[str] = ``
}
}
}
}
}