Skip to content

pipe like

Bhsd edited this page May 22, 2026 · 4 revisions

⚠️ By default, this rule reports plain-text | in table cells and link texts as warnings.

Options

double

❌ 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
|}

link

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]]

td

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
|}

Clone this wiki locally