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: | |||||||||||||||||||||
feedback
|
|
Depends which markdown library stackoverflow is using but this works on Reddit, maybe they should share notes.
| |||||||
feedback
|
|
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 | |||||
feedback
|
|
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. | |||||||||||||||
feedback
|
|
You can do this: Header 1 Header 2 Header 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 | |||||||||||
feedback
|
|
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:
| |||
|
feedback
|


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