Help:Lint エラー/stripped-tag
Appearance
開始タグの不足エラーはHTML要素の開始タグが不足しているときに発生します。一例;
{{Small|This small text is not italic.</i>}}
ここでは終了タグ「</i>」はあるものの、開始タグ「<i>」が不足しています。
これを修正するには、テンプレート内に開始タグ「<i>」を追加するか、終了タグ「</i>」を除去します。
修正した結果、以下のような表記になるはずです。
{{Small|<i>This small text is not italic.</i>}}
This error can also appear in conjunction with a 不足している終了タグ error when there is a line break that is not supposed to be present, for example in the middle of a set of <span>...</span> tags, or in a template that wraps a parameter in span tags.
To fix both errors with a single edit, remove the line break or replace it with <br />.
This error can sometimes appear when a table is not properly ended, either because it uses a template like {{Col-end}} instead of |}, or because |} is missing entirely.
Ending </p> tags without opening tags are not flagged as stripped tags.