Converting Tables Using FM Conversion Tables
I need to convert a table from unstructured FM to the HTML-like format:
<table>
<tr>
<td><para>Cell 1</para></td>
<td><para>Cell 2</para></td>
</tr>
<tr>
<td><para>Cell 3</para></td>
<td><para>Cell 3</para></td>
</tr>
</table>
However, it seems I'm missing something because I cannot make FM to wrap <para> in <td>. If I setup the conversion this way:
TC: P:CellBody ---------------- td
TR:td+ ---------------- tr
...it works like a charm, but the content is inserted directly to <td>. If I try to define:
TC: P:CellBody ---------------- para
TE: E:para ---------------- td
TR:td+ ---------------- tr
... it doesn't work. What am I missing?
Thanks in advance,
Alex