1 <?php
2 
3 namespace dokuwiki\Parsing\ParserMode;
4 
5 class Emaillink extends AbstractMode
6 {
7     /** @inheritdoc */
8     public function connectTo($mode)
9     {
10         // pattern below is defined in inc/mail.php
11         $this->Lexer->addSpecialPattern('<' . PREG_PATTERN_VALID_EMAIL . '>', $mode, 'emaillink');
12     }
13 
14     /** @inheritdoc */
15     public function getSort()
16     {
17         return 340;
18     }
19 }
20