From: Jeff D. <da...@da...> - 2003-03-18 17:41:50
|
> I was trying out the RawHTML Plugin. It doesn't seem to handle > lists, tables, or any html except the basic ones which can > already be used in unlocked Wiki pages. Is this the intent or am > I missing something here? I think you're missing something. You have to put the HTML within the plugin PI. Try something like: <?plugin RawHtml <table> <tr><td>Your table here!</td></tr> </table> ?> Whatever you put between "<?plugin RawHtml" and "?>" should get output verbatim in the generated HTML. PhpWiki doesn't try to interpret or filter the content at all. |