1
- import { Parser , ParserOptions } from ' htmlparser2' ;
2
- import { LocationTracker , SourceLocation } from ' ./location-tracker' ;
1
+ import { Parser , ParserOptions } from " htmlparser2" ;
2
+ import { LocationTracker , SourceLocation } from " ./location-tracker" ;
3
3
4
4
export type Directive = {
5
5
name : string | RegExp ;
@@ -30,15 +30,15 @@ export type Node = NodeText | NodeTag;
30
30
const defaultOptions : ParserOptions = {
31
31
lowerCaseTags : false ,
32
32
lowerCaseAttributeNames : false ,
33
- decodeEntities : false
33
+ decodeEntities : false ,
34
34
} ;
35
35
36
36
const defaultDirectives : Directive [ ] = [
37
37
{
38
- name : ' !doctype' ,
39
- start : '<' ,
40
- end : '>'
41
- }
38
+ name : " !doctype" ,
39
+ start : "<" ,
40
+ end : ">" ,
41
+ } ,
42
42
] ;
43
43
44
44
export const parser = ( html : string , options : Options = { } ) : Node [ ] => {
@@ -54,7 +54,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
54
54
55
55
function isDirective ( directive : Directive , tag : string ) : boolean {
56
56
if ( directive . name instanceof RegExp ) {
57
- const regex = new RegExp ( directive . name . source , 'i' ) ;
57
+ const regex = new RegExp ( directive . name . source , "i" ) ;
58
58
59
59
return regex . test ( tag ) ;
60
60
}
@@ -96,7 +96,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
96
96
return ;
97
97
}
98
98
99
- if ( typeof last === ' object' ) {
99
+ if ( typeof last === " object" ) {
100
100
if ( last . content === undefined ) {
101
101
last . content = [ ] ;
102
102
}
@@ -118,7 +118,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
118
118
return ;
119
119
}
120
120
121
- if ( typeof last === ' object' ) {
121
+ if ( typeof last === " object" ) {
122
122
if ( last . content === undefined ) {
123
123
last . content = [ ] ;
124
124
}
@@ -146,7 +146,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
146
146
if ( options . sourceLocations ) {
147
147
buf . location = {
148
148
start : locationTracker . getPosition ( parser . startIndex ) ,
149
- end : locationTracker . getPosition ( parser . endIndex )
149
+ end : locationTracker . getPosition ( parser . endIndex ) ,
150
150
} ;
151
151
lastOpenTagEndIndex = parser . endIndex ;
152
152
}
@@ -165,7 +165,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
165
165
function onclosetag ( name : string , isImplied : boolean ) {
166
166
const buf : Node | undefined = bufArray . pop ( ) ;
167
167
168
- if ( buf && typeof buf === ' object' && buf . location && parser . endIndex !== null ) {
168
+ if ( buf && typeof buf === " object" && buf . location && parser . endIndex !== null ) {
169
169
if ( ! isImplied ) {
170
170
buf . location . end = locationTracker . getPosition ( parser . endIndex ) ;
171
171
} else if ( lastOpenTagEndIndex < parser . startIndex ) {
@@ -181,7 +181,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
181
181
return ;
182
182
}
183
183
184
- if ( typeof last === ' object' ) {
184
+ if ( typeof last === " object" ) {
185
185
if ( last . content === undefined ) {
186
186
last . content = [ ] ;
187
187
}
@@ -201,10 +201,10 @@ export const parser = (html: string, options: Options = {}): Node[] => {
201
201
return ;
202
202
}
203
203
204
- if ( typeof last === ' object' ) {
204
+ if ( typeof last === " object" ) {
205
205
if ( last . content && Array . isArray ( last . content ) && last . content . length > 0 ) {
206
206
const lastContentNode = last . content [ last . content . length - 1 ] ;
207
- if ( typeof lastContentNode === ' string' && ! lastContentNode . startsWith ( ' <!--' ) ) {
207
+ if ( typeof lastContentNode === " string" && ! lastContentNode . startsWith ( " <!--" ) ) {
208
208
last . content [ last . content . length - 1 ] = `${ lastContentNode } ${ text } ` ;
209
209
return ;
210
210
}
@@ -220,14 +220,17 @@ export const parser = (html: string, options: Options = {}): Node[] => {
220
220
}
221
221
}
222
222
223
- const parser = new Parser ( {
224
- onprocessinginstruction,
225
- oncomment,
226
- onattribute,
227
- onopentag,
228
- onclosetag,
229
- ontext
230
- } , { ...defaultOptions , ...options } ) ;
223
+ const parser = new Parser (
224
+ {
225
+ onprocessinginstruction,
226
+ oncomment,
227
+ onattribute,
228
+ onopentag,
229
+ onclosetag,
230
+ ontext,
231
+ } ,
232
+ { ...defaultOptions , ...options } ,
233
+ ) ;
231
234
232
235
parser . write ( html ) ;
233
236
parser . end ( ) ;
0 commit comments