mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
13 lines
429 B
JavaScript
13 lines
429 B
JavaScript
|
require(__dirname).test({
|
||
|
opt: { strictEntities: true },
|
||
|
xml: '<r>⌋ ' +
|
||
|
'♠ © → & ' +
|
||
|
'< < < < < > ℜ ℘ €</r>',
|
||
|
expect: [
|
||
|
['opentagstart', {'name': 'R', attributes: {}}],
|
||
|
['opentag', {'name': 'R', attributes: {}, isSelfClosing: false}],
|
||
|
['text', '⌋ ♠ © → & < < < < < > ℜ ℘ €'],
|
||
|
['closetag', 'R']
|
||
|
]
|
||
|
})
|