A question was posted on Stack Overflow with this Markdown source:
Write a program to print the following pattern:
* * * * * * * * *
* * * * * * * *
* * * * * *
* * * *
* *
* * * *
* * * * * *
* * * * * * * *
* * * * * * * * *
Obviously this is incorrectly formatted and it yields a monstrosity of nested lists. But grotesque as it is, there's a bug in the rendered HTML. The HTML has improperly nested <em> tags. IE and Firefox are okay, but in Chrome it leaves italics open for the rest of the page. Here's a screenshot:

And here is the questionable HTML:
<p><ul>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li><em></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li></em></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
<li><ul>
<li><ul>
<li><em></li>
</ul></li>
</ul></li>
<li></em></li>
<li><ul>
<li><ul>
<li><em></li>
</ul></li>
</ul></li>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li></em></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li><ul>
<li>*
<hr></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul></p>