It seems like a lot of people try to display tables in SO questions but don't do a very good job. Is there any markdown syntax that supports creating a proper table?

share|improve this question
Other than SQL posts, how often does this actually happen? Do you have any example posts of people mangling tables? – Michael Mrozek Dec 30 '10 at 15:09
13  
@Michael mmm, arguably, people don't mangle tables because they don't use them in the first case because the functionality isn't there. It would come in handy sometimes to have a possibility to present tabular data, although I don't know how to implement it exactly (Converting the way I show in my answer into a real <table> might be one possibility) – Pekka 웃 Dec 30 '10 at 16:43
1  
@Pekka Sure, I'm not against it, but the OP said "It seems like a lot of people try to display tables in SO questions but don't do a very good job", which I've not really seen – Michael Mrozek Dec 30 '10 at 17:06
2  
@Michael Mrozek - I've run across performance comparisons or feature comparisons that are munged into the code formatting. It would be nice to see them (and the SQL posts) formatted more nicely. – jball Dec 30 '10 at 17:40
1  
2  
Found through @KennyTM's link, another non-SQL table use: truth tables – jball Dec 30 '10 at 18:43
Markdown, no. But Johannes posted a nice example in Please add support for tables in answers and questions, using Google Chart Tools. That needs some manual URL-encoding though, to use it in Markdown. (Johannes simply posted a screenshot there; don't be fooled! ;-)) – Arjan Aug 20 '11 at 16:10
@Michael Mrozek - Are you kidding? I see multiple examples of mangled tables every day. – JohnFx Sep 29 '11 at 20:08
Here's an example of an answer that needs table formatting: apple.stackexchange.com/a/55729/7833 – daviesgeek Jul 6 '12 at 19:12
This is how they solve tables on MediaWiki: mediawiki.org/wiki/Help:Tables At first it looks a bit complicated, but if you carefully look at it, it isn't too bad at all. It saves a lot of typing effort in comparison with the (unsupported) html markup and manual formtting in code blocks. Just my €0.02 – jippie Aug 6 '12 at 7:22
@MichaelMrozek: "Do you have any example posts of people mangling tables?" electronics.stackexchange.com/a/42266/142 – endolith Oct 10 '12 at 13:32
@MichaelMrozek: Another example where tables would have been useful. I'm trying to number the sections of a regular expression to make it easier to illustrate what each is doing. Simple tables would have made the horizontal alignment much easier. – Kelly S. French Feb 20 at 15:50
Here is another example: stackapps.com/questions/288/… – Nathan Osman Mar 3 at 8:24
GitHub Flavored Markdown supports them: github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#tables – Benjamin Mar 27 at 12:17
@MichaelMrozek. It also happens on EL&U with users presenting data from corpora in tabular form. – TRiG Apr 12 at 22:24
show 1 more comment

9 Answers

up vote 90 down vote accepted
--------------------------------------------------
| No | Sadly        | There is none              |
--------------------------------------------------
| Except this, which is a poor alternative       |
--------------------------------------------------
| There really      | should be one              |
--------------------------------------------------

And with the new mobile theme, code blocks no longer require horizontal scrolling, but get line wrapping instead. That makes even small tables like the example above look bad, like:

Bad rendering on small screen     Bad rendering on Android 4.x

share|improve this answer
4  
Unicode box-drawing would improve this, kind of ;-) (Markdown source) – Arjan Aug 20 '11 at 12:40
8  
But see the wonderful Format Text as Table web app to create ASCII-art tables easily. – Jay Levitt Apr 1 '12 at 22:30
1  
Indeed on android there isn't a monospace font so it's even worse :( – Rory Apr 5 '12 at 14:50
1  
@Rory, I've just tested on both Android 2.3.x and 4.x, and both support monospace just fine. – Arjan Apr 14 '12 at 10:26
@Arjan was going on Jeff's answer here but you're right, it's now working on my android too xD – Rory Apr 14 '12 at 10:29
@Arjan: The Unicode box drawing looks bad on FF12/Windows. The ASCII one looks nice, though. – nhahtdh Jul 7 '12 at 18:04
And, @nhahtdh, somehow the Unicode box drawing needs slightly more space too, making even the small tables from my examples break on a Nexus S (in portrait). – Arjan Jul 7 '12 at 19:08

Depends which markdown library stackoverflow is using but this works on Reddit, maybe they should share notes.

| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This       |        This |     This     
| column     |      column |    column    
| will       |        will |     will     
| be         |          be |      be      
| left       |       right |    center    
| aligned    |     aligned |   aligned
share|improve this answer
3  
This would be nice. – Pekka 웃 Dec 30 '10 at 16:49
2  
That looks like the MultiMarkdown implementation of Markdown. – Stefan Lasiewski Jan 10 '12 at 1:49
reST's simple table is nice: docutils.sourceforge.net/docs/user/rst/quickref.html#tables but SE should probably stick with some markdown implementation – endolith Oct 10 '12 at 13:44

You can do this:

Header 1Header 2Header 3
Cell 1      Cell 2      Cell 3      
Cell 3      Cell 4      Cell 5      
Cell 6      Cell 7      Cell 8      

Also:




And the obvious third:




OK, I'm only serious about the first one. Though if you check the code, you need some nifty &nbsp;s :/

share|improve this answer
Just noticed-on mobile the kbd table looks pretty cool – Manishearth Apr 5 '12 at 14:17
3  
Nice effort, but I feel this is even worse than using an image. (Well, granted, at least one can copy or search values.) Please mind the data dump, screen readers, Stack Apps, and whatever use we don't know about! – Arjan Apr 14 '12 at 10:45
6  
Workaround is now broken :) – badp's kitten May 10 '12 at 22:13
1  
I've fixed it! Edit has to be peer reviewed but now looks right again: i.stack.imgur.com/yNOsk.png – Camilo Martin Jan 22 at 18:20
@CamiloMartin: Thanks, approved :) – Manishearth Jan 22 at 18:32

Elsewhere on Meta, I once learned about the nice Senseful Solutions Format Text as a Table tool. Of course, it's not Markdown, and it's an extra step. And the resulting ASCII tables like that don't work well on mobile, if too wide. But just in case it helps some, it supports different formats:

+------------+---------+
|    Type    |  MySQL  |
+------------+---------+
| Header     | Top Row |
| Auto Align | On      |
+------------+---------+
+------------+---------+
| Type       | MySQL   |
| Header     | Top Row |
| Auto Align | On      |
+------------+---------+
+---+------------+-------------+
|   |     A      |      B      |
+---+------------+-------------+
| 1 | Type       | MySQL       |
| 2 | Header     | Spreadsheet |
| 3 | Auto Align | On          |
+---+------------+-------------+
╔═══╦════════════╦═════════════╗
║   ║ A          ║ B           ║
╠═══╬════════════╬═════════════╣
║ 1 ║ Type       ║ Unicode Art ║
║ 2 ║ Header     ║ Spreadsheet ║
║ 3 ║ Auto Align ║ Off         ║
╚═══╩════════════╩═════════════╝

Manually creating Unicode box-drawing gives some more control and rounded corners, but maybe not on all computers/devices:

╭───╥────────────┬─────────────╮
│   ║     1      │     2       │
╞═══╬════════════╪═════════════╡
│ A ║ Type       │ Manual      │
│ B ║ Header     │ Anything    │
│ C ║      Align │        Sure │
└───╨────────────┴─────────────┘

Still quite ugly, I'd say, if only because of the gray background.

share|improve this answer

If I am reading the Markdown syntax page (then search for "table") correctly, you use regular HTML table tags with an extra set of blank lines surrounding the <table> and </table> tags. Alas, I didn't get it to work here on meta. Feedback appreciated if someone else has figured it out.

share|improve this answer
8  
Correct: Markdown includes tables, but SE doesn't support that part of Markdown (at one point it worked in the live preview, but I've not tried it for a long time). – Richard Dec 31 '10 at 8:55

It's quite annoying. Especially, as bernd_k has pointed out, with database-related questions. The only solution we have right now is use our finest ASCII art skillz. To avoid the mobile layout mess-up, you don't have to necessarily extend the width of the table all the way to the right:

Header1 | Header2 | Header 3
--------+---------+----------
0       | 1       | 7
2       | 5       | 3
9       | 7       | 2
share|improve this answer

On SO often I see a number of questions tagged sql which present their test data by some tabular representation.

Often the first comments ask for datatypes of some columns.

For these cases I would prefer if OP just uses create table and insert statements.

That makes its easier to verify his problem or to try and verify the solution.

share|improve this answer
4  
What's this got to do with displaying tabular data in questions and answers? – ChrisF Dec 30 '10 at 14:45
1  
In SO there are often questions about sql, where example data is given in a tabular representation. If you want to help you need convert it first. – bernd_k Dec 30 '10 at 14:47
you might want to update your answer with the premise in your comment. It might help avoid downvotes since it's a legitimate solution to the particular issue you describe in your comment. – tvanfosson Dec 30 '10 at 14:50
3  
SQL posts present data that way because it's common for databases to output data in ascii-tabular format, and they're just copy/pasting it. Even if actual tables existed in SO's markdown, it's unlikely users would take the time to manually create them when they've already got the data another way – Michael Mrozek Dec 30 '10 at 15:08
+1 I agree entirely. For SQL posts nice cosmetic delimiters such as in Ben Shelock's answer just get in the way when trying to set up test tables with the data. Questions such as this one put quite a lot of work on potential answerers just setting up the test environment. DDL and insert statements or a CTE with select statements and UNIONS are the ideal such questions for me. – Martin Smith Jan 1 '11 at 0:56

If you use pandoc, there is an extension which does tables

http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html

col1  col2  col3
----- ----- -----
a     b     c
1     5     sup
share|improve this answer

Did you ever think about switching to Textile? Tables are easily written there:

|_. name |_. age |_. sex |
| joan | 24 | f |
| archie | 29 | m |
| bella | 45 | f |

Find more at http://redcloth.org/hobix.com/textile/

share|improve this answer

You must log in to answer this question.

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