1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "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"
- }
- ]
- }
- ]
- }
|