1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-09 08:45:55 +02:00
joplin/packages/fork-sax/test/xml_entities.js
2020-11-05 16:58:23 +00:00

13 lines
429 B
JavaScript

require(__dirname).test({
opt: { strictEntities: true },
xml: '<r>&rfloor; ' +
'&spades; &copy; &rarr; &amp; ' +
'&lt; < < < < &gt; &real; &weierp; &euro;</r>',
expect: [
['opentagstart', {'name': 'R', attributes: {}}],
['opentag', {'name': 'R', attributes: {}, isSelfClosing: false}],
['text', '&rfloor; &spades; &copy; &rarr; & < < < < < > &real; &weierp; &euro;'],
['closetag', 'R']
]
})