'iDo', 'email' => 'iDo@woow-fr.com', 'date' => '14/12/2005', 'name' => 'commentsrc Plugin', 'desc' => 'Make texte only visible when editing a page', 'url' => 'https://www.dokuwiki.org/plugin:commentsrc', ); } /** * What kind of syntax are we? */ function getType(){ return 'substition'; } /** * Where to sort in? */ function getSort(){ return 51; } /** * Connect pattern to lexer */ function connectTo($mode) { $this->Lexer->addSpecialPattern("!-.*-!",$mode,'plugin_commentsrc'); } /** * Handle the match */ function handle($match, $state, $pos, &$handler){ return true; } /** * Create output */ function render($mode, &$renderer, $data) { return true; } } //Setup VIM: ex: et ts=4 enc=utf-8 :