We need to put lists in table cells.
Remarkup neither with | ... | nor HTML tables allows to have lists in table cells. It is understandable when using the | ... | code, but should be possible when using HTML tables.
<table> <tr> <th>Owner</th> <th>Products</th> </tr> <tr> <td>User 1</td> <td> * Product 1 * Product 2 </td> </tr> </table>
produces
Owner | Products |
---|---|
User 1 | * Product 1 * Product 2 |