メインコンテンツまでスキップ

require-ancestor

HTML Living Standardに基づき、要素がコンテンツモデルで指定された必須の祖先要素(descendantOf)なしに出現している場合に警告します。設定は@markuplint/html-specにあります。

❌ 間違ったコード例

<div>
<area href="/path" alt="Link" />
</div>

✅ 正しいコード例

<map name="example">
<area href="/path" alt="Link" />
</map>

Interface

{
"require-ancestor": boolean
}

Default Severity

error