vote up 24 vote down star
27

The Stack Overflow site 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:

src=""
width="" (up to 999)
height="" (up to 999)
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, if there's some other (safe!) tag you think we should allow, I am open to suggestions.

flag
46  
I think what we really are missing here is the blink and marquee tags. – waffles Jul 2 at 12:29
1  
Small, smaller, large, and larger. – Dave Jarvis Aug 30 at 18:31
1  
@DaveJarvis no thanks. – TM Oct 13 at 16:50
1  
Note that the attributes on <img> and <a> must occur in exactly the order given here. So <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 at 17:58

12 Answers

vote up 1 vote down

Mathoverflow is using jsMath for rendering mathematical expressions. This causes one or two issues with the Markdown formatter: basically, because Markdown doesn't know that jsMath is going to render the mathematics, it doesn't know not to try to format it itself, which means that subscripts in particular are in great danger of becoming interpreted as emphasis. This can be avoided on a block-level by enclosing the entire paragraph in p tags, but finer control would be nice. One way to achieve this would be to allow div and span tags with the pseudo-attribute 'markdown'. Thus 'markdown=0' means "turn off markdown in this element" whilst 'markdown=1' means "turn it on" (in case it's already turned off by some other rule). This is a bit like that already in place with PHP Markdown's Extras.

link|flag
vote up -1 vote down

It would be nice to have <center> tags.

link|flag
Why? Just pad it out with &nbsp; – random Nov 14 at 4:48
Or use a code block and pad out with spaces. – John Smithers Nov 14 at 9:28
1  
Oh good, ASCII lovers &mdash; I must be in the right place &mdash; after all these years of being $\lambda$-basted about my ASCII graphics! And now that I finally have a few respectable images that I need to center like all the best style sheets say I should &hellip; [insert ironicon here] – Jon Awbrey Nov 14 at 15:30
vote up 0 vote down

Is the mailto syntax not supported for anchor tags?

I tried adding it to my profile but it's stripping it out.

link|flag
HTML in your profile is far more stripped/locked down. – random Oct 22 at 15:25
@random Oh ok, I just wanted to make sure I wasn't doing something incorrect. – Joseph Oct 22 at 15:34
vote up 0 vote down

Request: Would be nice to be able to underline some text.

Or is this already possible?

regards

link|flag
2  
conflicts with hyperlinks, which are typically underlined. Underlining is of extremely limited use anyway IMO. – Jeff Atwood Oct 2 at 10:07
vote up 1 vote down

The 'definition list' elements are allowed:

<dd>
<dl>
<dt>

but I would really like better style for them.

See my question (feature-request):

link|flag
vote up 1 vote down

How about the ability to enter HTML Unicode values - like 뷯뾽 -> &#EFBF; &#BDEF; &#BFBD; &#EFBF; ?

link|flag
1  
well, many entities work, like &nbsp; and &hellip; – Jeff Atwood Oct 25 at 21:33
vote up 13 vote down

Can we add the acronym tag?

To get to the page you have to type the <acronym title="Fully Qualified Domain Name">FQDN</acronym>.

I like to tag acronyms I use so that I don't alienate readers based on the one acronym they don't understand, IMHO. Sure beats using the FDNT, but we know that GLLT users won't RTFM or the FAQ.

(fun quiz, which of the above acronyms are made up?)

link|flag
and <abbr title="Abbreviation">abbr</abbr> too! – James Cassell Oct 7 at 1:32
1  
FDNT and GLLT, but then again it DOYD of "made up." – Matt Ball Nov 13 at 22:14
vote up 2 vote down

A spoiler-block and/or small text option would be nice: It's often nice to add (extra) motivating details to a question or answer that aren't essential but help one understand the reasoning underlying a particular issue.

Being able to de-emphasize supporting bits of text would make Q's and A's more skimmable.

link|flag
1  
No thanks, I like the readability of SO. "Expandable" sections don't add nearly enough value compared to the readability cost that comes with them. – TM Oct 13 at 16:51
vote up 0 vote down

Why not support the table tagset? In one of my answers I really needed a table to properly present a truth table. I had to fudge it using a fixed width font and lots of '===' and '|' characters to show the columns and rows.

It would have been much simpler with table support. I've used another Wiki engine (Kwiki) that supported a markdown-type charset that included using '|' to indicate table columns. The main Kiwi.org site is down so I included a link to the cached page of Kwiki's formatting rules.

link|flag
vote up 3 vote down

It would be nice to be able to have footnotes; this would require supporting name="" attribute on the <a> tag.

link|flag
vote up 3 vote down

They may render in the client preview but they will always be removed on the server.

That bit kinda bugs me.

link|flag
1  
if it bugs you enough, submit patches: meta.stackoverflow.com/questions/1227/… – Jeff Atwood Jul 3 at 1:17
2  
I seriously doubt my javascript skills are up to it, but give me a little time to clear some other things off my plate and I'm gonna give it try. Maybe check back in, say, 6-8 weeks ;) – Joel Coehoorn Jul 3 at 1:30
1  
also, realize we are on V2 of the preview already. Remember when <table> tags used to show up in the preview? So we did a TON of work on this already, and now we're increasingly chasing corner cases. Diminishing returns. – Jeff Atwood Jul 3 at 7:31
vote up 4 vote down

This is sort of off-topic, but would it be possible (feasible?) to create something in between quotes and code? There are a lot of questions with quoted error messages or something similar where one wants to preserve line breaks, but also doesn't want syntax highlighting. I know it can be accomplished using pre tags, but it's not readily apparent, especially to newbies. Maybe just a button that will wrap things in pre tags for you?

link|flag
2  
<pre> is your friend here... I've edited a lot of Q's and A's on SO to change code to pre when I've spotted the issue and had the time. – RBerteig Jul 16 at 7:05
<pre> is not really my friend, as it needs manual encoding of things that look like HTML tags. – Arjan van Bentem Sep 26 at 12:18

Your Answer

Get an OpenID

Not the answer you're looking for? Browse other questions tagged or ask your own question.