RedirectTargetToken (EN) - bhsd-harry/wikiparser-node GitHub Wiki
The target of redirect. RedirectTargetToken inherits all the properties and methods of the LinkBaseToken class which are not repeated here.
✅ Available in the Mini and Browser versions.
✅ Expand
type: 'redirect-target'
// type
var {firstChild: {lastChild}} = Parser.parse('#redirect [[a]]');
assert.equal(lastChild, '[[a]]');
assert.strictEqual(lastChild.type, 'redirect-target');
Expand
version added: 1.10.0
type: string
Link text, read-only.
// innerText (main)
var {firstChild: {lastChild}} = Parser.parse('#redirect [[a_b#a_b|b]]');
assert.equal(lastChild, '[[a_b#a_b|b]]');
assert.strictEqual(lastChild.innerText, 'A b#a_b');
✅ Expand
returns: LintError[]
Report potential grammar errors.
// lint
var {firstChild: {lastChild}} = Parser.parse('#redirect [[a|b]]');
assert.equal(lastChild, '[[a|b]]');
assert.deepStrictEqual(lastChild.lint(), [
{
rule: 'no-ignored',
severity: 'error',
message: 'useless link text',
startLine: 0,
startCol: 13,
startIndex: 13,
endLine: 0,
endCol: 15,
endIndex: 15,
fix: {
range: [13, 15],
text: '',
},
},
]);
Expand
param: this
Deep clone the node.
// cloneNode (main)
var {firstChild: {lastChild}} = Parser.parse('#redirect [[a|b]]');
assert.equal(lastChild, '[[a|b]]');
assert.deepStrictEqual(lastChild.cloneNode(), lastChild);