I want list somethings in table. So I wrote following
(It seems like remarkup syntax can't do this, So use html syntax)
<table>
<tr>
<th>Step</th>
<th>Description</th>
</tr>
<tr>
<td>
Step 1
</td>
<td>
* Do A first
* Do B next
</td>
</tr>
</table>I expect following
+-----------------------------------------+ | Step | Description | +-----------------------------------------+ | Setp1 | * Do A first | | | * Do B next | +-----------------------------------------+
But actually It looks like
| Step | Description |
|---|---|
| Step 1 | * Do A first * Do B next |
I think this is related T5393 task.
PS. Sorry for my POOR English.