@@ -10,6 +10,7 @@ export type Directive = {
10
10
export type Options = {
11
11
directives ?: Directive [ ] ;
12
12
sourceLocations ?: boolean ;
13
+ recognizeNoValueAttribute ?: boolean ;
13
14
} & ParserOptions ;
14
15
15
16
export type Tag = string | boolean ;
@@ -45,6 +46,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
45
46
const bufArray : Node [ ] = [ ] ;
46
47
const results : Node [ ] = [ ] ;
47
48
let lastOpenTagEndIndex = 0 ;
49
+ let noValueAttributes : Record < string , true > = { } ;
48
50
49
51
function bufferArrayLast ( ) : Node {
50
52
return bufArray [ bufArray . length - 1 ] ;
@@ -70,6 +72,11 @@ export const parser = (html: string, options: Options = {}): Node[] => {
70
72
const object : Attributes = { } ;
71
73
72
74
object [ key ] = String ( attrs [ key ] ) . replace ( / & q u o t ; / g, '"' ) ;
75
+
76
+ if ( options . recognizeNoValueAttribute && noValueAttributes [ key ] ) {
77
+ object [ key ] = true ;
78
+ }
79
+
73
80
Object . assign ( result , object ) ;
74
81
} ) ;
75
82
@@ -122,6 +129,17 @@ export const parser = (html: string, options: Options = {}): Node[] => {
122
129
}
123
130
}
124
131
132
+ function onattribute ( name : string , value : string , quote ?: string | undefined | null ) {
133
+ // Quote: Quotes used around the attribute.
134
+ // `null` if the attribute has no quotes around the value,
135
+ // `undefined` if the attribute has no value.
136
+ if ( quote === undefined ) {
137
+ // `true` is recognized by posthtml-render as attrubute without value
138
+ // See: https://github.com/posthtml/posthtml-render/blob/master/src/index.ts#L268
139
+ noValueAttributes [ name ] = true ;
140
+ }
141
+ }
142
+
125
143
function onopentag ( tag : string , attrs : Attributes ) {
126
144
const buf : NodeTag = { tag } ;
127
145
@@ -137,6 +155,10 @@ export const parser = (html: string, options: Options = {}): Node[] => {
137
155
buf . attrs = normalizeArributes ( attrs ) ;
138
156
}
139
157
158
+ // Always reset after normalizeArributes
159
+ // Reason: onopentag callback will fire after all attrubutes have been processed
160
+ noValueAttributes = { } ;
161
+
140
162
bufArray . push ( buf ) ;
141
163
}
142
164
@@ -201,6 +223,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
201
223
const parser = new Parser ( {
202
224
onprocessinginstruction,
203
225
oncomment,
226
+ onattribute,
204
227
onopentag,
205
228
onclosetag,
206
229
ontext
0 commit comments