-
-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-implement the GFM Autolink extension using the new inline parser a…
…pproach Fixes #492
- Loading branch information
1 parent
8097a58
commit 0e5ed0d
Showing
7 changed files
with
112 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the league/commonmark package. | ||
* | ||
* (c) Colin O'Dell <colinodell@gmail.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace League\CommonMark\Extension\Autolink; | ||
|
||
use League\CommonMark\Extension\CommonMark\Node\Inline\Link; | ||
use League\CommonMark\Parser\Inline\InlineParserInterface; | ||
use League\CommonMark\Parser\Inline\InlineParserMatch; | ||
use League\CommonMark\Parser\InlineParserContext; | ||
|
||
final class EmailAutolinkParser implements InlineParserInterface | ||
{ | ||
private const REGEX = '[A-Za-z0-9.\-_+]+@[A-Za-z0-9\-_]+\.[A-Za-z0-9\-_.]+'; | ||
|
||
public function getMatchDefinition(): InlineParserMatch | ||
{ | ||
return InlineParserMatch::regex(self::REGEX); | ||
} | ||
|
||
public function parse(string $match, InlineParserContext $inlineContext): bool | ||
{ | ||
// The last character cannot be - or _ | ||
if (\in_array(\substr($match, -1), ['-', '_'], true)) { | ||
return false; | ||
} | ||
|
||
// Does the URL end with punctuation that should be stripped? | ||
if (\substr($match, -1) === '.') { | ||
$match = \substr($match, 0, -1); | ||
} | ||
|
||
$inlineContext->getCursor()->advanceBy(\strlen($match)); | ||
$inlineContext->getContainer()->appendChild(new Link('mailto:' . $match, $match)); | ||
|
||
return true; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters