I want list somethings in table. So I wrote following
(It seems like remarkup syntax can't do this, So use html syntax)
lang=txt
<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
lang=txt
+-----------------------------------------+
| Step | Description |
+-----------------------------------------+
| Setp1 | * Do A first |
| | * Do B next |
+-----------------------------------------+
But actually It looks like
<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 this this is related T5393 task.
PS. Sorry for my **POOR** English.