-
Notifications
You must be signed in to change notification settings - Fork 2
DoubleUnderscoreToken (EN)
Bhsd edited this page Mar 11, 2025
·
6 revisions
Behavior switch. This class inherits all the properties and methods of the Token class which are not repeated here.
✅ Available in the Mini and Browser versions.
type: string
Lowercase name of the behavior switch, read-only.
// name
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);
对维基文本批量执行语法检查的命令行工具
用于维基文本的 VSCode 扩展
A command-line tool that performs linting on Wikitext in bulk
VSCode extension for Wikitext