entities.js 321 B

12345678910
  1. require(__dirname).test({
  2. xml: '<r>&rfloor; ' +
  3. '&spades; &copy; &rarr; &amp; ' +
  4. '&lt; < < < < &gt; &real; &weierp; &euro;</r>',
  5. expect: [
  6. ['opentag', {'name':'R', attributes:{}, isSelfClosing: false}],
  7. ['text', '⌋ ♠ © → & < < < < < > ℜ ℘ €'],
  8. ['closetag', 'R']
  9. ]
  10. });