Are line breaks within a table cell supported in markdown?

Joplin 2.11.11 / Debian 12

Right now I am using <br/> tags to insert line breaks within a table cell :

|AAA|BBB|
|---|---|
|ccc<br/>ddd<br/>eee|fff|
|ggg|hhh|

Given that a \ at the end of a line is suppose to render as a <br/> tag (see https://github.github.com/gfm/#hard-line-break), I expected the following MD code to generate the same output as the previous code :

|AAA|BBB|
|---|---|
|ccc\
ddd\
eee|fff|
|ggg|hhh|

But it's not working. Are line breaks inside table cells not supported in markdown, or I am missing something here ?

OK, here's the syntax to make it work :

|AAA|BBB|
|---|---|
|ccc|fff\
|ddd\
eee|
|ggg|hhh|

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.