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?
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: |
|||||||||||||||||||||||
|
|
Depends which markdown library stackoverflow is using but this works on Reddit, maybe they should share notes.
|
|||||||||||
|
|
You can do this: Header 1Header 2Header 3 Also: header1header2header3 And the obvious third: header1header2header3 OK, I'm only serious about the first one. Though if you check the code, you need some nifty |
|||||||||||||||||
|
|
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:
Manually creating Unicode box-drawing gives some more control and rounded corners, but maybe not on all computers/devices:
Still quite ugly, I'd say, if only because of the gray background. |
||||
|
|
|
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 |
|||||
|
|
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:
|
|||
|
|
|
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. |
|||||||||||||||||
|
|
If you use pandoc, there is an extension which does tables http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html
|
|||
|
|
|
Did you ever think about switching to Textile? Tables are easily written there:
Find more at http://redcloth.org/hobix.com/textile/ |
|||
|
|





<table>might be one possibility) – Pekka 웃 Dec 30 '10 at 16:43;-)) – Arjan Aug 20 '11 at 16:10