obsolete tag - bhsd-harry/wikiparser-node GitHub Wiki

obsolete-tag

⚠️ By default, this rule reports obsolete HTML tags as warnings.

Options

tag name

This rule can be configured for specific HTML tags by providing an object with the tag name as the key and the severity as the value.

Examples of incorrect code for { "obsolete-tag": [ 0, { "tt": 2 } ] }:

<tt>Foo</tt>

Examples of correct code for { "obsolete-tag": [ 2, { "tt": 0 } ] }:

<tt>Foo</tt>
⚠️ **GitHub.com Fallback** ⚠️