xref: /dokuwiki/inc/Parsing/ParserMode/Notoc.php (revision cd89aff0a8c3297f0a4ac3b3d63873b9d2393254)
1<?php
2
3namespace dokuwiki\Parsing\ParserMode;
4
5class Notoc extends AbstractMode
6{
7    /** @inheritdoc */
8    public function connectTo($mode)
9    {
10        $this->Lexer->addSpecialPattern('~~NOTOC~~', $mode, 'notoc');
11    }
12
13    /** @inheritdoc */
14    public function getSort()
15    {
16        return 30;
17    }
18}
19