Here are the main reasons why commented code is a code smell:

The following code:

<p>
<!-- Non-Compliant -->
<!--
<b>Hello</b>,
<i>world</i>!
-->
...
</p>

should be refactored into:

<p>
<!-- Compliant -->
...
</p>