
There is a plugin available for DokuWiki to allow it to read bbcode but it only works with the latest version of DokuWiki.
http://wiki.splitbrain.org/plugin:bbcode
Hopefully the XOOPS versions can be updated soon to allow this plugin to work.
global $xoopsUser;
if (is_object($xoopsUser)) {
$email = $xoopsUser->getVar('email');
}
echo "<b>Click to subscribe</b>";
echo '<FORM Method=POST ACTION="http://example.com/cgi-bin/mailman/subscribe/YOURLIST">';
echo '<INPUT name="email" type="hidden" value="';
echo $email;
echo '">';
echo '<INPUT type="Submit" name="email-button" value="YOURLIST">';
echo '</FORM>';