nested link - bhsd-harry/wikiparser-node GitHub Wiki
nested-link
❌ By default, this rule reports internal links inside external links as errors.
Examples
Examples of incorrect code for { "nested-link": 2 }
:
[//example.com [Foo](/bhsd-harry/wikiparser-node/wiki/Foo)]
Examples of correct code for { "nested-link": 0 }
:
[//example.com [Foo](/bhsd-harry/wikiparser-node/wiki/Foo)]
Options
file
This rule also reports file links inside external links. This behavior can be configured by providing a file
option with a severity value.
Examples of incorrect code for { "nested-link": [ 0, { "file": 2 } ] }
:
[//example.com Bar]
Examples of correct code for { "nested-link": [ 2, { "file": 0 } ] }
:
[//example.com Bar]