You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current MediaWikiScanner doesn't support attribute on table cells.
Each table cell is allowed to contain style attributes.
Quote from MediaWiki syntax page
<cite>
...
# XHTML attributes. Each mark, except table end, optionally accepts one or more
XHTML attributes. Attributes must be on the same line as the mark. Separate
attributes from each other with a single space.
* Cells and caption (| or ||, ! or !!, and |+) hold content. So separate any attributes from content with a single pipe (|). Cell content may follow on same line or on following lines.
* Table and row marks ({| and |-) do not directly hold content. Do not add pipe (|) after their optional attributes. If you erroneously add a pipe after attributes for the table mark or row mark the parser will delete it and your final attribute if it was touching the erroneous pipe!
...
</cite>
The attached patch adds the logic to the parser, that attributes
are handled and related serializers are able to handle such attributes
as WikiParams. JUnit-Test included.
Original issue reported on code.google.com by [email protected] on 30 Jul 2010 at 1:42
Original issue reported on code.google.com by
[email protected]
on 30 Jul 2010 at 1:42Attachments:
The text was updated successfully, but these errors were encountered: