blob: 490166785d09ddae31dae410bdbc9b55328f4550 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require(__dirname).test({
xml: '<r>⌋ ' +
'♠ © → & ' +
'< < < < < > ℜ ℘ €</r>',
expect: [
['opentag', {'name':'R', attributes:{}, isSelfClosing: false}],
['text', '⌋ ♠ © → & < < < < < > ℜ ℘ €'],
['closetag', 'R']
]
});
|