I am working on a side-by-side text. I have to prepare this with two column layout. For example one column contains English text and other column/right column contains translation of preceding (English) text. Markdown does not support table marking but Github Flavored Markdown supports. I have made a few attempts, but unfortunately could not solve. It looks bad. Even I put two columns, I should make table border unseen.
You can't, at least not with pure Markdown as it doesn't have any concept of columns. As explained in the rules: The idea for Markdown is to make it easy to read, write, and edit prose. HTML is a publishing format; Markdown is a writing format.
In a .md file html code can be put. A very easy mode to get this effect is doing a table without borders,
<table border="0">
<tr>
<td><b style="font-size:30px">Title</b></td>
<td><b style="font-size:30px">Title 2</b></td>
</tr>
<tr>
<td>Lorem ipsum ...</td>
<td>Lorem ipsum ...</td>
</tr>
</table>
No pure markdown way to do it.
Columns don't exist in markdowns.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With