-
Notifications
You must be signed in to change notification settings - Fork 3
pipe like
| in table cells and link texts as warnings.
❌ By default, this rule reports plain-text || in table cells as errors. This can be configured by providing a double option with a severity value.
Examples of incorrect code for { "pipe-like": [ 0, { "double": 2 } ] }:
{|
|
Foo || Bar
|}Examples of correct code for { "pipe-like": { "double": 0 } }:
{|
|
Foo || Bar
|}This option can be configured to specify the severity of plain-text | in link texts.
Examples of incorrect code for { "pipe-like": [ 0, { "link": 2 } ] }:
[[Foo|Bar|Baz]][[Category:Foo|Bar|Baz]]Examples of correct code for { "pipe-like": { "link": 0 } }:
[[Foo|Bar|Baz]][[Category:Foo|Bar|Baz]]This option can be configured to specify the severity of plain-text | in table cells.
Examples of incorrect code for { "pipe-like": [ 0, { "td": 2 } ] }:
{|
|| Foo | Bar
|}Examples of correct code for { "pipe-like": { "td": 0 } }:
{|
|| Foo | 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