-
Notifications
You must be signed in to change notification settings - Fork 3
ParamLineToken (EN)
Bhsd edited this page Dec 13, 2025
·
3 revisions
One-line parameter inside <dynamicpagelist> or <inputbox>. This class inherits all the properties and methods of the Token class which are not repeated here.
✅ Available in the Mini and Browser versions.
✅ Expand
type: 'param-line'
// type
var line = Parser.parse('<inputbox>type=create</inputbox>')
.querySelector('param-line');
assert.equal(line, 'type=create');
assert.strictEqual(line.type, 'param-line');Expand
returns: this
Deep clone the node.
// cloneNode (main)
var line = Parser.parse('<inputbox>type=create</inputbox>')
.querySelector('param-line');
assert.equal(line, 'type=create');
assert.deepStrictEqual(line.cloneNode(), line);对维基文本批量执行语法检查的命令行工具
轻量级的维基模板解析器
维基文本语言服务器协议实现
用于维基文本的 VS Code 扩展
A command-line tool that performs linting on Wikitext in bulk
A lightweight Wikitext template parser
An implementation of the Language Server Protocol for Wikitext
VS Code extension for Wikitext