Reputation: 33
I am a noob in programming and would like to know how to stack multiple lines of text in one cell of the table. This is what I am talking about:
Upvotes: 2
Views: 599
Reputation: 1610
You can use <br/>
tag just after the text you want to break the line and it will get the job done.
Update:
The table would look like this
| First | Second |
| -------- | ---------------------------- |
| Heading | # H1<br/> ## H2</br> ### H3 |
Upvotes: 4