Table line return in Markdown plain text editor need an option to convert line return in <br>
<!--IssueSummary start-->
<details>
<summary>
Everyone can contribute. [Help move this issue forward](https://handbook.gitlab.com/handbook/marketing/developer-relations/contributor-success/community-contributors-workflows/#contributor-links) while earning points, leveling up and collecting rewards.
</summary>
- [Close this issue](https://contributors.gitlab.com/manage-issue?action=close&projectId=278964&issueIid=534721)
</details>
<!--IssueSummary end-->
A important part of automatic Markdown table to HTML format conversion is due to a "simple" line return add by people that want juste update table info. An option need to exist, to convert all lines return to \<br\> to try to keep it into "markdown format".
{width="681" height="50"}
### initial table
| header | header |
|--------|--------|
| my table | with multiline |
### after editing in rich text and adding line return
<table>
<tr>
<th>header</th>
<th>header</th>
</tr>
<tr>
<td>my table</td>
<td>
with
multiline
</td>
</tr>
</table>
### expected
| header | header |
|--------|--------|
| my table | with <br>multiline |
issue