-
Notifications
You must be signed in to change notification settings - Fork 1
RedirectTargetToken (EN)
bhsd edited this page Jun 18, 2024
·
3 revisions
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
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);
对维基文本批量执行语法检查的命令行工具
用于维基文本的 ESLint 插件
A command-line tool that performs linting on Wikitext in bulk
ESLint plugin for Wikitext