xref: /dokuwiki/inc/Parsing/ParserMode/Multiplyentity.php (revision 71a75f041e8e73a77d75db26da40a770a58dccbe)
1<?php
2
3namespace dokuwiki\Parsing\ParserMode;
4
5/**
6 * Implements the 640x480 replacement
7 */
8class Multiplyentity extends AbstractMode
9{
10
11    /** @inheritdoc */
12    public function connectTo($mode)
13    {
14
15        $this->Lexer->addSpecialPattern(
16            '(?<=\b)(?:[1-9]|\d{2,})[xX]\d+(?=\b)',
17            $mode,
18            'multiplyentity'
19        );
20    }
21
22    /** @inheritdoc */
23    public function getSort()
24    {
25        return 270;
26    }
27}
28