The Stack Exchange engine uses Markdown for questions and answers. Per the Markdown spec, you are allowed to freely intermix HTML and Markdown tags.

However, it does not allow all HTML tags, as that would be an XSS paradise.

What tags then are allowed in posts?

Return to FAQ index

share|improve this question
2  
A couple of people have sort of hinted at this, but there is limited markup available for comments. There is more information on this here - meta.stackoverflow.com/questions/63286/… - but a really useful tip is to click on the help link under Add 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
How would I add an image that has surrounding floating text? – rubo77 Apr 22 at 18:43

1 Answer

Allowed HTML Tags

The Stack Exchange 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>

Allowed Attributes

img Attributes

The following attributes are allowed on the <img> tag, but note that the mobile theme enforces a maximum width of 90%, so specifying a height might not scale the image proportionally on the mobile sites.

The attribute order is important! Using a 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; see note above)
alt=""
title=""

a Attributes

The following attributes are allowed on the <a> tag:

href=""
title=""

Important Notes

  • HTML tags unlisted above 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.
share|improve this answer
5  
what about non breaking spaces aka &nbsp;? – AvL Oct 5 '12 at 7:54
7  
what about <small>? – Velmont Oct 7 '12 at 19:34
2  
@avl That is not an HTML tag – random Oct 7 '12 at 19:50
2  
What about <table> ? – Daniel Blackhall Oct 30 '12 at 5:49
<table> is also not on the whitelist @dan – random Oct 30 '12 at 13:51
2  
I probably should have made a better comment, why is <table> not available? Or is there a markdown alternative for including a table of data into my question or answer? – Daniel Blackhall Oct 30 '12 at 20:33
What about <ins>? – Richard Deeming Oct 31 '12 at 15:49
<ins> is also not on the whitelist @ric – random Oct 31 '12 at 16:06
3  
Why is <table> not on the whitelist? – Liam W Nov 10 '12 at 19:17
2  
Since you cannot add <table> tags, it is not on the whitelist. If you want a reason, you can search for "+reason +markdown +table" on the site and meta.stackoverflow.com/questions/16356/… @lia – random Nov 10 '12 at 19:39
The lack of center alignment (at least for img tag) seems like an odd omission to me. I rarely add an image where I don't think it would be more properly center aligned. But I guess we all have our favorite tags. But it's good we conform to the standard, even if we don't quite get why certain things are omitted. – Robert Ryan Nov 26 '12 at 19:32
@random I do not understand why the dl/dt/dd set are so useless. It would be nice if the dd sections were indented a bit, at the very least. I suppose users could embolden or italicize their own dt tags, so may having a default highlighting there is not as sensible as indenting dd portions. The thing is that this would give another tool to add structure to posts, which is a good thing: it makes them easier to read if there are visual organizational markers like those. – tchrist Jan 13 at 17:19
Can someone think of any good use for the <br> tag? From my experience it just gets misused and makes editing a real pain. – Seth May 9 at 17:30

You must log in to answer this question.

protected by Community Jul 31 '11 at 11:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged