aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Parsing/ParserMode/Notoc.php
blob: 5747050c0108f5b7921802ab68f4809997c3383a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace dokuwiki\Parsing\ParserMode;

class Notoc extends AbstractMode
{
    /** @inheritdoc */
    public function connectTo($mode)
    {
        $this->Lexer->addSpecialPattern('~~NOTOC~~', $mode, 'notoc');
    }

    /** @inheritdoc */
    public function getSort()
    {
        return 30;
    }
}