3c3300951bbb28d476d8354f1b077b737f71f05394d7d5d8eca5677c6eddbdbd0f37cb08f848aeb7c612e65731672d2b0ad94111f8a0ca741cc6d3d7d4efd7 341 B

1234567891011121314151617181920
  1. {
  2. "name": "Extra spaces in tag",
  3. "options": {},
  4. "html": "<font\t\n size='14' \n>the text</\t\nfont\t \n>",
  5. "expected": [
  6. {
  7. "type": "tag",
  8. "name": "font",
  9. "attribs": {
  10. "size": "14"
  11. },
  12. "children": [
  13. {
  14. "data": "the text",
  15. "type": "text"
  16. }
  17. ]
  18. }
  19. ]
  20. }