I would like to use semantic linefeeds when writing tables markdown such that each cell can appear on its own line.
For example, if I have this table:
| | Column One | Column Two | Column Three |
|---------|------------|------------|--------------|
| Row One | Cell One | Cell Two | Cell Three |
| Row Two | Cell Four | Cell Five | Cell Six |
Assuming that each cell's content might be a full sentence, I might want to write it something like this:
| | Column One | Column Two | Column Three |
|---------|------------|------------|--------------|
| Row One
| Cell One
| Cell Two
| Cell Three
| Row Two
| Cell Four
| Cell Five
| Cell Six
Is there any way in GitHub Flavored Markdown to break the cells of a single row across multiple lines, outside of just writing the raw HTML tags?