From: Joat D. <w9...@ea...> - 2003-03-18 21:26:49
|
Oh, I see now. Yep, I was using it wrong. This feature works fine. Thank-you. Joat ----- Original Message ----- From: "Jeff Dairiki" <da...@da...> To: "Joat Dede" <w9...@ea...> Cc: <php...@li...> Sent: Tuesday, March 18, 2003 12:41 PM Subject: Re: [Phpwiki-talk] RawHTML Plugin > 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. |