Create a table without a header in Markdown
Is it possible to create a table without a header in Markdown? The HTML would look like this: <table> <tr> <td>Key 1</td> <td>Value 1</td> </tr> <tr> <td>Key 2</td> <td>Value 2</td> </tr> </table> adius Most Markdown parsers don't support tables without headers. That means the separation line for headers is mandatory. Parsers that do not support tables without headers multimarkdown Maruku : A popular implementation in Ruby byword : "All tables must begin with one or more rows of headers" PHP Markdown Extra "second line contains a mandatory separator line between the headers and the content"