* @author Elan Ruusamäe */ use dokuwiki\plugin\htmlok\BaseSyntaxPlugin; class syntax_plugin_htmlok_htmlok extends BaseSyntaxPlugin { protected $ptype = 'normal'; protected $sort = 190; protected $tag = 'html'; protected $mode = 'plugin_htmlok_htmlok'; protected function renderMatch(string $match): string { return $this->html($match); } }