Subject: | Aligned table cells in PmWiki are broken |
Since alignment in PmWiki table cells relies on spacing, the whitespace in an HTML table cell must be trimmed before converting it into wiki markup. Consider this HTML table:
<table><tr>
<td align="left"> A </td>
<td align="right"> B </td>
</tr></table>
Without trimming, this becomes
|| A || B ||
which does not achieve the proper alignment.
With trimming, we get
||A || B||
which is correct.
This was found broken in 0.21 and fixed in 0.22.
-- David Iberri