Subject: | HTML table conversion fails |
Converter version v1.02.01
On perl 5.10.1, on Windows XP
HTML table conversion to Mediawiki fails, giving just linear text. Below
is an example html table that causes the problem. This valid HTML code
results in Mediawiki code with no table opening {| code and also errors
in the table header and links.
<table cellpadding="4" cellspacing="0" summary="" class="table"
frame="border" border="1" rules="all">
<thead class="thead" align="left">
<tr class="row">
<th class="entry" valign="top" id="d33128e214">Method</th>
<th class="entry" valign="top" id="d33128e217">Description</th>
</tr>
</thead>
<tbody class="tbody">
<tr class="row">
<td class="entry" valign="top" headers="d33128e214 d33128e217
">GetLegacyAccounts</td>
<td class="entry" valign="top" headers="d33128e214 d33128e217
">For more details read <a class="xref" href="BreakingChanges.html"
title="Here is a summary of the breaking changes.">UI Breaking
Changes</a>under the section Integration. </td>
</tr>
<tr class="row">
<td class="entry" valign="top" headers="d33128e214 d33128e217
">SyncAccounts</td>
<td class="entry" valign="top" headers="d33128e214 d33128e217
">Synchronizes user accounts.</td>
</tr>
</tbody>
</table>
This produces the following code:
[[Category:TABTEST]][[BreakingChanges|UI Breaking Changes]]under the
section Integration.
|- class="row"
| class="entry" headers="d33128e214 d33128e217 " valign="top" |
SyncAccounts
| class="entry" headers="d33128e214 d33128e217 " valign="top" |
Synchronizes user accounts.
Which appears as linear text in the Wiki:
UI Breaking Changesunder the section Integration. |- class="row" |
class="entry" headers="d33128e214 d33128e217 " valign="top" |
SyncAccounts | class="entry" headers="d33128e214 d33128e217 "
valign="top" | Synchronizes user accounts.