We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
textlint-plugin-htmlとの併用です(ほかのルールチェックでもエラーが無視される場合があるようですが、きちんと確認できてません)。
<!-- すべて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>
各種要素内のエラーが検知できません。
<p>テスト"<!-- OK --> <p>テスト"<!-- OK -->
<p>テスト"<!-- NG --> <ul> <li>テスト"</li><!-- NG --> </ul>
<p>テスト"</p><!-- OK --> <ul> <li>テスト"</li><!-- NG --> </ul>
p要素(終了タグ省略)+ul要素という組み合わせだと、なぜかp要素内のエラーが報告されません。
p
ul
The text was updated successfully, but these errors were encountered:
https://github.com/textlint/textlint-plugin-html のパース+AST作成の問題な可能性もあります。 (ただ閉じカッコの省略はパーサーに厳しいので、 https://github.com/wooorm/rehype が対応してなかったら多分できないです) textlint-plugin-html使ってるユーザーの絶対数が少ないので、こういう問題はありえると思います。
Sorry, something went wrong.
No branches or pull requests
textlint-plugin-htmlとの併用です(ほかのルールチェックでもエラーが無視される場合があるようですが、きちんと確認できてません)。
テストケース1
各種要素内のエラーが検知できません。
テストケース2
p
要素(終了タグ省略)+ul
要素という組み合わせだと、なぜかp
要素内のエラーが報告されません。The text was updated successfully, but these errors were encountered: