Feature Requests: Character reference, comment out
Closed this issue · 1 comments
momdo commented
以下3点ほど(まとめて書いちゃってますがこれでいいんですかね…)
Don't use Named character reference, directly writing the character
Bad:
<p><small>© 2014 Foo Bar.</small></p>
Good:
<p><small>© 2014 Foo Bar.</small></p>
どうせutf-8
を使うので、実体参照を使う理由も特になさそう。
Don't comment out contents in style element
Bad:
<style>
<!--
body { lint-height: 1.5 }
-->
</style>
Good:
<style>
body { lint-height: 1.5 }
</style>
今時こんなの書く人いるのか、という話ですが。
Don't use comments with CDATA in script element
Bad:
<script>/*<![CDATA[*/
foo;
/*]]>*/</script>
Good:
<script>
foo;
</script>
こんなまどろっこしいのはtext/html
では不要でしょう。
以上、検討ください。
hail2u commented
実体参照はちょっと保留します。別にイシュー立てます。
あーなるほど、コメントアウト。すっかり忘れてました。そちらはマージしました。