You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-26 22:41:17 +02:00
All: Use Lerna to manage monorepo
This commit is contained in:
12
packages/fork-sax/test/xml_entities.js
Normal file
12
packages/fork-sax/test/xml_entities.js
Normal file
@@ -0,0 +1,12 @@
|
||||
require(__dirname).test({
|
||||
opt: { strictEntities: true },
|
||||
xml: '<r>⌋ ' +
|
||||
'♠ © → & ' +
|
||||
'< < < < < > ℜ ℘ €</r>',
|
||||
expect: [
|
||||
['opentagstart', {'name': 'R', attributes: {}}],
|
||||
['opentag', {'name': 'R', attributes: {}, isSelfClosing: false}],
|
||||
['text', '⌋ ♠ © → & < < < < < > ℜ ℘ €'],
|
||||
['closetag', 'R']
|
||||
]
|
||||
})
|
||||
Reference in New Issue
Block a user