The Stack Exchange engine, as you know, uses Markdown for questions and answers. Per the Markdown spec, you are allowed to freely intermix HTML and Markdown tags.
However, we do not allow all HTML tags, as that would be an XSS paradise. To that end, the Stack Overflow engine allows only the following safe, whitelisted subset of HTML tags:
<a>
<b>
<blockquote>
<code>
<del>
<dd>
<dl>
<dt>
<em>
<h1>, <h2>, <h3>
<i>
<img>
<kbd>
<li>
<ol>
<p>
<pre>
<s>
<sup>
<sub>
<strong>
<strike>
<ul>
<br/>
<hr/>
The following attributes are allowed on the <img> tag: (attributes order is important - putting different order e.g. height before width will strip the tag)
src=""
width="" (up to 999 - do not include the 'px' extension)
height="" (up to 999 - do not include the 'px' extension)
alt=""
title=""
The following attributes are allowed on the <a> tag:
href=""
title=""
HTML tags not on this list are stripped from the output. They may render in the client preview but they will always be removed on the server.You must enter the tags exactly as shown. Any deviation from this list (adding extra spaces, using single quote or no quotes, etc) means the tag will be stripped.
We do not and will not allow table tags -- sorry. This is intentional and by design. If you need a quick and dirty "table", use <pre> and ASCII layout.
However, I am open to suggestions. Are there some other (safe!) tags you think we should allow?
<img alt="foo" src="http://bar.com/baz.jpg">won't work, but<img src="http://bar.com/baz.jpg" alt="foo">will. – Anton Geraschenko Nov 12 '09 at 17:58helplink underAdd Comment, as this will provide you with a full list. This is a great posts/wiki by the way. – Aaron Newton Dec 5 '11 at 21:48