Lexer->addSpecialPattern(']*>[^<]*',$mode,'plugin_const'); } function handle($match, $state, $pos, Doku_Handler $handler) { return array($match, $state, $pos); } function render($mode, Doku_Renderer $renderer, $data) { // $data is what the function handle return'ed. if($mode == 'xhtml'){ $renderer->doc .=""; return true; } return false; } }