-
Notifications
You must be signed in to change notification settings - Fork 3
Examples (section header)
Bhsd edited this page Apr 15, 2026
·
6 revisions
展开
你可以将页面中的章节名从 Reference 重命名为 References。此示例演示了 HeadingToken 的用法。
// Renaming a section (main)
// 包含章节 `Reference` 的页面内容
var content = `Foo
== Reference ==
Bar`,
root = Parser.parse(content);
for (const heading of root.querySelectorAll('heading')) {
if (heading.innerText === 'Reference') {
heading.innerText = 'References';
}
}
assert.equal(
root,
`Foo
==References==
Bar`,
);展开
你可以将页面中名为 Notes 的章节放在 References 章节之前。此示例演示了 Token.prototype.sections 和 AstRange 的用法。
// Ordering sections (main)
// 包含 `Notes` 和 `References` 章节的页面内容
var content = `Foo
== References ==
Bar
== Notes ==
Baz`,
root = Parser.parse(content),
sections = root.sections(),
references = sections.find(
section => section.querySelector('heading[level=2]')?.innerText
=== 'References',
),
notes = sections.find(
section => section.querySelector('heading[level=2]')?.innerText
=== 'Notes',
);
if (references && notes) {
const {childNodes} = notes;
// 必须先移除 `notes`,再将其子节点插入到 `references` 前
notes.remove();
references.before(...childNodes);
}
assert.equal(
root,
`Foo
== Notes ==
Baz
== References ==
Bar
`,
);展开
你可以在第一个章节前插入 魔术字 __TOC__。此示例演示了 AstNode.prototype.before 的用法。
// Inserting TOC before the first section (main)
// 包含章节的页面内容
var content = `Foo
== Bar ==
Baz`,
root = Parser.parse(content),
heading = root.querySelector('heading');
if (heading) {
heading.before('__TOC__\n');
}
assert.equal(
root,
`Foo
__TOC__
== Bar ==
Baz`,
);展开
你可以获取页面中某个章节的片段标识符。此示例演示了 HeadingToken 的用法。
// Getting the URL fragment of a section (main)
// 包含章节的页面内容
var content = `Foo
== <i>Bar</i> ==
Baz`,
root = Parser.parse(content),
heading = root.querySelector('heading'),
fragment = heading && `#${heading.id}`;
assert.equal(
fragment,
'#Bar',
);对维基文本批量执行语法检查的命令行工具
轻量级的维基模板解析器
维基文本语言服务器协议实现
用于维基文本的 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