*/ /** * All DokuWiki plugins to extend the parser/rendering mechanism * need to inherit from this class */ class syntax_plugin_comment extends DokuWiki_Syntax_Plugin { function getType(){ return 'substition'; } function getSort(){ return 321; } function connectTo($mode) { $this->Lexer->addSpecialPattern("^/\*.*?\*|\s+/\*.*?\*/", $mode, 'plugin_comment'); } function handle($match, $state, $pos, Doku_Handler $handler){ return ''; } function render($mode, Doku_Renderer $renderer, $data) { return true; } }