Question
Is it possible to embed calendar plugin calls inside table cells eg
| %CALENDAR{month="1" year="2002"}% | %CALENDAR{month="2" year="2002"}% |
It appears that the calendar plugin overrides the table, the calendars are created, but not in table cells.
Environment
--
EricAiken - 15 Dec 2003
Answer
A calendar produced by the Plugin is an HTML table composed of many lines. The lines break a TWiki table apart. Use an HTML table:
<table border="1"><tr><td valign="top">
%CALENDAR{month="1" year="2002"}%
</td><td valign="top">
%CALENDAR{month="2" year="2002"}%
</td></tr></table>
--
PeterThoeny - 16 Dec 2003