xref: /dokuwiki/inc/Parsing/ParserMode/Hr.php (revision f9a94e78392d6a178b0e7f29a005688fc44e5cc3)
1<?php
2
3namespace dokuwiki\Parsing\ParserMode;
4
5class Hr extends AbstractMode
6{
7
8    /** @inheritdoc */
9    public function connectTo($mode)
10    {
11        $this->Lexer->addSpecialPattern('\n[ \t]*-{4,}[ \t]*(?=\n)', $mode, 'hr');
12    }
13
14    /** @inheritdoc */
15    public function getSort()
16    {
17        return 160;
18    }
19}
20