In http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user, Jeff explains which basic HTML elements are allowed. Near the end he states

We do not and will not allow table tags -- sorry. This is intentional and by design.

I am wondering what the rationale behind the decision is. I could see the difficulty in getting the tr and td elements to properly close for users not familiar with HTML, and perhaps how tables lend themselves to wasting too much horizontal real estate.

I'm not suggesting that tables be allowed in the SO engine, but I would like to know what pitfalls I can expect if I allow my users to enter them in my (soon-to-be-written) application that allows markup.

link|improve this question
feedback

4 Answers

Markdown doesn't actually have a markup syntax for tables. There are some add-ons that do, such as PHP Markdown Extra, but neither WMD nor whatever SO uses server-side supports them.

Jeff seems to be of the opinion that tabular data can be represented well enough using code sections so as to accomplish most tasks. I would imagine the extra expense of supporting and validating tables does not seem particularly worthwhile to the team.

link|improve this answer
Well, Markdown also doesn't actively disable the html table tags. Tables in markdown are just tables in HTML. – badp Jun 23 '11 at 14:35
feedback

I imagine the reason is because Jeff & Co. don't want to have to worry about people using undesired markup elements which could potentially blow apart the site's layout.

It is probably easier just to say "no tables" then to have to make sure that tables don't screw things up.

link|improve this answer
3  
Sloths! – Welbog 2 - Welbog in time Aug 21 '09 at 19:30
8  
You can't create a broken table with Markup. If the correct patterns aren't found, it doesn't create a table. – Jonathan Sampson Aug 21 '09 at 19:33
feedback

My guess is because Jeff & Co don't want to deal with the hassles that user-generated tables bring.

However, you can pseudocode tables by using the <pre> or code markup, since spaces are respected:

like   this   table
right  here   .

Malformed table HTML can screw up the site layout pretty royally. And that makes nobody happy.

link|improve this answer
3  
I'm pretty sure you cannot create a malformed table with Markup :) – Jonathan Sampson Aug 21 '09 at 19:30
2  
I'll create a malformed you with markup. – Eric Aug 21 '09 at 19:37
feedback

What about simple table support without using tags. Kwiki had a pretty simple table markup. See this answer: http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed-on-stack-overflow-server-fault-and-super-user/12736#12736

link|improve this answer
feedback

You must log in to answer this question.

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