1<?php
2/**
3 * DokuWiki Plugin htmlok (Syntax Component)
4 *
5 * @license GPL 2 https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
6 * @author  saggi <saggi@gmx.de>
7 * @author  Elan Ruusamäe <glen@delfi.ee>
8 */
9
10use dokuwiki\plugin\htmlok\BaseSyntaxPlugin;
11
12class syntax_plugin_htmlok_htmlok extends BaseSyntaxPlugin
13{
14    protected $ptype = 'normal';
15    protected $sort = 190;
16    protected $tag = 'html';
17    protected $mode = 'plugin_htmlok_htmlok';
18
19    protected function renderMatch(string $match): string
20    {
21        return $this->html($match);
22    }
23}
24