*/ // must be run within Dokuwiki if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'syntax.php'); /** * All DokuWiki plugins to extend the parser/rendering mechanism * need to inherit from this class */ class syntax_plugin_comment extends DokuWiki_Syntax_Plugin { /** * return some info */ function getInfo(){ return array( 'author' => 'Esther Brunner', 'email' => 'wikidesign@gmail.com', 'date' => '2006-12-02', 'name' => 'Hidden Comment Plugin', 'desc' => 'allows hidden comments in the wiki source', 'url' => 'http://www.wikidesign.ch/en/plugin/comment/start', ); } function getType(){ return 'substition'; } function getSort(){ return 321; } function connectTo($mode) { $this->Lexer->addSpecialPattern("/\*.*?\*/", $mode, 'plugin_comment'); $this->Lexer->addSpecialPattern("//.*?$", $mode, 'plugin_comment'); } function handle($match, $state, $pos, &$handler){ return ''; } function render($mode, &$renderer, $data) { return true; } } //Setup VIM: ex: et ts=4 enc=utf-8 :