Page MenuHomePhorge

How to put a line break in a Remarkup cell?
Closed, ResolvedPublic

Asked by valerio.bozzolan on Mar 21 2023, 11:32.

Details

I tried:

| 11 | 22 |
| AA | B
B |

But renders as:

1122
AAB

B |


I tried:

| 11 | 22 |
| AA | B<br />B |

But renders as:

1122
AAB<br />B

(Note: same with <br>)


So, how to add a line break?

Context:

https://secure.phabricator.com/T5427

Answers

smith
Updated 339 Days Ago

(From comment:)
You can do it using HTML tags and literal line breaks, like this:

<table>
<tr><td>11</td><td>22</td></tr>
<tr><td>AA</td><td>
B
B
</td></tr>
</table>
1122
AAB
B

The task you quoted was closed by committing this revision, which implemented it.
(<br> doesn't work here, but I think it should, even if it's ignored in plain Remarkup.)

New Answer

Answer

This question has been marked as closed, but you can still leave a new answer.