Files
mr-legend_wiki/inc/Parsing/ParserMode/Emaillink.php
T
2024-07-08 03:32:47 +09:00

20 lines
397 B
PHP

<?php
namespace dokuwiki\Parsing\ParserMode;
class Emaillink extends AbstractMode
{
/** @inheritdoc */
public function connectTo($mode)
{
// pattern below is defined in inc/mail.php
$this->Lexer->addSpecialPattern('<' . PREG_PATTERN_VALID_EMAIL . '>', $mode, 'emaillink');
}
/** @inheritdoc */
public function getSort()
{
return 340;
}
}