Details
Details
I tried:
| 11 | 22 | | AA | B B |
But renders as:
11 | 22 |
AA | B |
B |
I tried:
| 11 | 22 | | AA | B<br />B |
But renders as:
11 | 22 |
AA | B<br />B |
(Note: same with <br>)
So, how to add a line break?
Context:
Answers
Answers
(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>
11 | 22 |
AA | B 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
New Answer