Hi

I use HTML tables to create a multicolumn setup on my wiki start-page
(there's a lot of links etc, and I want them to be available with as
little scrolling as possible).

The code for my start-page looks something like this:

-------------------------------------------------
{{{
#!html
<table width="100%" cellspacing="12" cellpadding="12">
<tr>
<td valign="top" width="30%" style="border: 1px solid #d3d3d3;
background-color: #f3f3f3; padding: 0 10px 0 30px">
}}}

== Some links ==

link1
link2

{{{
#!html
</td>
<td valign="top" width="30%" style="border: 1px solid #d3d3d3;
background-color: #f3f3f3; padding: 0 10px 0 30px">
}}}

== Next column ==

link3
link4

{{{
#!html
</td>
</tr>
</table>
}}}
----------------------------------------------

Now, this worked perfectly with Trac 0.10, but after upgrading to 0.11b1
the table is not shown. If I look at the HTML source I see that the table
is terminated right after the initial macro:

----------------------------------------------
<table width="100%" cellspacing="12" cellpadding="12">
<tr>
<td valign="top" width="30%" style="border: 1px solid #d3d3d3;
background-color: #f3f3f3; padding: 0 10px 0 30px">
</td></tr></table><h2>Some links</h2>
----------------------------------------------

Why is that? I suspect that Trac finds an unterminated table in a
html-macro and decides to terminate it directly, even though the table
will be terminated in a following html-macro.

Is there any way around this or is there a better method altogether? I
could use wiki-tables I suppose, but I'm a little bit picky about the
layout of the start-page.

Regards,

Jonatan Magnusson







--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to