-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Type: BugBug or Bug fixesBug or Bug fixes
Description
textlint-plugin-htmlとの併用です(ほかのルールチェックでもエラーが無視される場合があるようですが、きちんと確認できてません)。
テストケース1
<!-- すべてNG -->
<head>
<title>テスト"</title>
</head>
<body>
<h1>テスト"</h1>
<h6>テスト"</h6>
<ul>
<li>テスト"
</ul>
<ol>
<li>テスト"
</ol>
<dl>
<dt>テスト"
<dd>テスト"
</dl>
<table>
<tr><th>テスト"</th></tr>
<tr><td>テスト"</td></tr>
</table>
<pre>
テスト"
</pre>
<figure>
<img src="test.gif" alt="">
<figcaption>テスト"</figcaption>
</figure>
<div>
テスト"
</div>
各種要素内のエラーが検知できません。
テストケース2
<p>テスト"<!-- OK -->
<p>テスト"<!-- OK -->
<p>テスト"<!-- NG -->
<ul>
<li>テスト"</li><!-- NG -->
</ul>
<p>テスト"</p><!-- OK -->
<ul>
<li>テスト"</li><!-- NG -->
</ul>
p
要素(終了タグ省略)+ul
要素という組み合わせだと、なぜかp
要素内のエラーが報告されません。
Metadata
Metadata
Assignees
Labels
Type: BugBug or Bug fixesBug or Bug fixes