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