https://bugzilla.wikimedia.org/show_bug.cgi?id=17486


David Göthberg <dav...@iname.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dav...@iname.com




--- Comment #7 from David Göthberg <dav...@iname.com>  2009-03-15 16:33:15 UTC 
---
This might be related to the problem that we can not put tables inside
unordered lists. There's probable a bug for that already, but here goes:

This usually doesn't work:

<pre>
* List item 1. {{some template with a table in}}
* List item 2.
</pre>

Probably since it is equivalent to this, which also doesn't work:

<pre>
* List item 1. {| class="wikitable" 
|- 
| | Cell 1. 
|}
* List item 2.
</pre>

Or this, which also doesn't work:

<pre>
* List item 1. <table class="wikitable">
<tr>
<td> Cell 1. </td>
</tr>
</table>
* List item 2.
</pre>

But if using HTML wikimarkup and only using a single line of code in the cell,
then it works:

<pre>
* List item 1. <table class="wikitable"><tr><td> Cell 1. </td></tr></table>
* List item 2.
</pre>

But most templates are not a single line, and we can not use wikitable markup
to build tables. That is, this never works:

<pre>
{| class="wikitable" |- | | Cell 1. |}
</pre>


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to