https://bugzilla.wikimedia.org/show_bug.cgi?id=67007
--- Comment #11 from Arlo Breault <[email protected]> --- The difference seems to be in how tables in fosterable position are resolved. wikitext: {| cellpadding="1" <table id="2"> <td>text</td> </table> |<!-- comment --> | some more text |} php: <table cellpadding="1"> <tr> <td>text</td> </tr> </table> <table> <tr> <td></td> <td>some more text</td> </tr> </table> parsoid: <table cellpadding="1"></table> <table id="2"> <tr> <td>text</td> </tr> </table> |<!-- comment --> | some more text -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
