vote up 26 vote down star
37

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, I am open to suggestions. Are there some other (safe!) tag you think we should allow?

flag
51  
I think what we really are missing here is the blink and marquee tags. – waffles Jul 2 at 12:29
5  
Small, smaller, large, and larger. – Dave Jarvis Aug 30 at 18:31
2  
@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
Why the rollback? That actually cut down on some of the questions I got from my co-workers. – AnonJr Dec 22 at 13:06
@AnonJr I don't think this post is meant to teach people stuff about HTML, but rather tell them what tags are allowed on the SO family of sites. If they want to learn HTML, there's the W3C; and they can ask the question on Stack Overflow. – George Stocker Dec 22 at 13:11
Fair enough if it was just SO and SF, but with SU folks not necessarily being programmers the "quick reference" nature of the change cleared up a lot for the less-than-technical folk around the office. – AnonJr Dec 22 at 16:02
Well, at least I can look at the revision history to help me when I am trying to format my questions and answers. – The User FormerlyKnownAs Larry Jan 2 at 15:51
what about underline? – serhio Jan 16 at 8:58

15 Answers

vote up 15 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
1  
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
Is it really needed? If an average programmer (acronyms are part of both the culture and the profession) can't find the definition quickly through a search engine, wouldn't your question, answer, or comment be overall better not using it? YMMV. – Roger Pate Dec 1 at 8:08
@Roger At the very least, it would add that little bit of extra semantic meaning that search engines would then be able to pick up on. It also caters to those really pedantic users out there (and they ARE out there!). Plus, as the OP suggests, it's more inclusive. – Phil.Wheeler Dec 21 at 2:24
I'd prefer an easier-to-write syntax (not HTML) for this. – Nicolás Jan 4 at 5:21
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
3  
<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
1  
<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
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 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
In HTML, a link to an anchor (#foo) doesn't need a name attribute in an a tag. It works with an id attribute in any element whatsoever. – Nicolás Jan 4 at 5:20
vote up 3 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
2  
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
it's precisely because of readability that I'd like em in*: people tend now to exclude code snippets, sample data, etc. and tend not to include sufficient explanation. Short questions tend to be answered more readily, so that poses a problem: do you just leave out relevant bits and hope people understand - and then wait until people explicitly ask for it (and have invested time understanding your Q), and *then add it (this works because once people have read and commented, they're way more likely to reread the longer more boring stuff)? If so, that's just wasting people's time. – Eamon Nerbonne Dec 7 at 15:00
I'm going to second small text. You can do it anyway <sub>with sub</sub> <sup>and sup</sup> but it looks lousy. And there's large text with the h1/h2/h3 business, so you might as well. – Jason S Dec 14 at 1:15
h1 is not big text; it's first-level heading. Use it only as such. – Nicolás Jan 4 at 5:19
vote up 2 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 2 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
@Jeff Atwood: Phooey! Your comment is of extremely limited use. Sometimes underlining is <u>`exactly</u>` (damn) the right emphasis. I fail to see how it "conflicts" with hyperlinks. The fact that hyperlinks are often displayed as underlined (and in my setup, they're not, so there!) doesn't mean that underlined text is incompatible on a page that also has hyperlinks. That's preposterous. Now if you have underlined text that's also the same color as your hyperlinks and changes the mouse cursor when you mouse over it, but doesn't actually do anything when clicked, then that's a problem. – P Daddy Dec 9 at 18:04
Traditionally, underlining is how you make something bold that you don't have a bold font for. Because bold is available, reserving underlining for hyperlinks seems very sensible. – rjmunro Jan 22 at 16:06
vote up 2 vote down

Math Overflow 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 2 vote down

Why del but not ins? I just edited a post where somebody had trouble getting some XML to display and had substituted square brackets for < and >. I then used del to strike-through their explanation of their formatting problem and ins around my explanation of why and how I'd reformatted the code; but as ins is stripped out, that aspect of the semantic relationship of the two sentences has been lost.

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
The degrees entity (e.g. for Fahrenheit or Celcius) also work: &deg; – Peter Mortensen Jan 2 at 18:14
Funny how they don't work in your own comments here. Are they actually broken, or were you showing how to type them? &hellip; &deg; (actually broken) – Nicolás Jan 4 at 5:17
Comments are plain text, only questions and answers accept markdown / html. – rjmunro Jan 22 at 16:07
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
3  
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 1 vote down

underline tag <u>

link|flag
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

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 0 vote down

Allow to explicitly set the syntax highlighting language in <pre>?

link|flag

Your Answer

Get an OpenID

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