ListToken (EN) - bhsd-harry/wikiparser-node GitHub Wiki
List at the start of the line. This class inherits all the properties and methods of the Token class which are not repeated here.
🌐 Available in the Browser version.
version added: 1.16.5
type: number
Indentation.
// indent (print)
var {firstChild} = Parser.parse('::a');
assert.equal(firstChild, '::');
assert.strictEqual(firstChild.indent, 2);
// indent (main)
var {firstChild} = Parser.parse('::a');
firstChild.indent = 1;
assert.equal(firstChild, ':');
Expand
type: boolean
Whether it contains :
, read-only.
// dd (main)
var {firstChild} = Parser.parse(':');
assert.ok(firstChild.dd);
Expand
type: boolean
Whether it contains ;
, read-only.
// dt (main)
var {firstChild} = Parser.parse(';');
assert.ok(firstChild.dt);
Expand
type: boolean
Whether it contains *
, read-only.
// ul (main)
var {firstChild} = Parser.parse('*');
assert.ok(firstChild.ul);
Expand
type: boolean
Whether it contains #
, read-only.
// ol (main)
var {firstChild} = Parser.parse('#');
assert.ok(firstChild.ol);
Save the syntax tree as JSON.
// json
var {lastChild} = Parser.parse('\n:');
assert.deepStrictEqual(lastChild.json(), {
range: [1, 2],
type: 'list',
indent: 1,
childNodes: [
{
range: [1, 2],
data: ':',
},
],
});
Expand
returns: this
Deep clone the node.
// cloneNode (main)
var {firstChild} = Parser.parse(';');
assert.deepStrictEqual(firstChild.cloneNode(), firstChild);
Expand
returns: Token
Get the range of the list.
// getRange (main)
var {firstChild} = Parser.parse(';a');
assert.equal(firstChild.getRange(), 'a');
({firstChild} = Parser.parse(';a:b'));
assert.equal(firstChild.getRange(), 'a');