-
Notifications
You must be signed in to change notification settings - Fork 2
DoubleUnderscoreToken (EN)
bhsd edited this page Jun 3, 2024
·
4 revisions
Behavior switch.
All of the following properties and methods are not available in the Mini and Browser versions.
type: string
Lowercase name of the behavior switch, read-only.
// name (main)
var {firstChild} = Parser.parse('__NOTOC__');
assert.equal(firstChild, '__NOTOC__');
assert.strictEqual(firstChild.name, 'notoc');
returns: this
Deep clone the node.
// cloneNode (main)
var {firstChild} = Parser.parse('__NOTOC__');
assert.equal(firstChild, '__NOTOC__');
assert.deepStrictEqual(firstChild.cloneNode(), firstChild);
对维基文本批量执行语法检查的命令行工具
用于维基文本的 ESLint 插件
A command-line tool that performs linting on Wikitext in bulk
ESLint plugin for Wikitext