Allows you to insert any of the JSPWikiPlugins directly into the template. Usage
<wiki:Plugin plugin="<plugin class>" args="<argument string>"> <optional plugin body> </wiki:Plugin> To include a body to the plugin, include it in the body of the tag. Example
<wiki:Plugin plugin="Counter" args="name='foo'" /> Inserts the CounterPlugin, with its name set to 'foo'. <wiki:Plugin plugin="FooBar" args="name='foo'"> I am body text. </wiki:Plugin> Inserts the ~FooBar plugin, with the arguments "name" set to "foo", and the plugin body set to "I am body text". Back to JSPWikiTags. |