You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
774 B
47 lines
774 B
{ |
|
"name": "Normalize whitespace", |
|
"options": { |
|
"normalizeWhitespace": true |
|
}, |
|
"html": "Line one\n<br>\t \r\n\f <br>\nline two<font><br> x </font>", |
|
"expected": [ |
|
{ |
|
"data": "Line one ", |
|
"type": "text" |
|
}, |
|
{ |
|
"type": "tag", |
|
"name": "br", |
|
"attribs": {} |
|
}, |
|
{ |
|
"data": " ", |
|
"type": "text" |
|
}, |
|
{ |
|
"type": "tag", |
|
"name": "br", |
|
"attribs": {} |
|
}, |
|
{ |
|
"data": " line two", |
|
"type": "text" |
|
}, |
|
{ |
|
"type": "tag", |
|
"name": "font", |
|
"attribs": {}, |
|
"children": [ |
|
{ |
|
"type": "tag", |
|
"name": "br", |
|
"attribs": {} |
|
}, |
|
{ |
|
"data": " x ", |
|
"type": "text" |
|
} |
|
] |
|
} |
|
] |
|
} |