a0c9bf502e7b944e57a64d5505349649e070805f64d4518986626638e5112153f3693d7ec27d1ed4b83a36fcf2a393379fd93e36b7dc1e030ef646584ae6be 686 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "Text outside tags",
  3. "options": {},
  4. "html": "Line one\n<br>\nline two",
  5. "expected": [
  6. {
  7. "data": "Line one\n",
  8. "type": "text",
  9. "prev": null,
  10. "next": {
  11. "type": "tag",
  12. "name": "br",
  13. "attribs": {}
  14. }
  15. },
  16. {
  17. "type": "tag",
  18. "name": "br",
  19. "attribs": {},
  20. "prev": {
  21. "data": "Line one\n",
  22. "type": "text"
  23. },
  24. "next": {
  25. "data": "\nline two",
  26. "type": "text"
  27. }
  28. },
  29. {
  30. "data": "\nline two",
  31. "type": "text",
  32. "prev": {
  33. "type": "tag",
  34. "name": "br",
  35. "attribs": {}
  36. },
  37. "next": null
  38. }
  39. ]
  40. }