|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
/* |
|
6
|
|
|
* This file is part of the league/commonmark package. |
|
7
|
|
|
* |
|
8
|
|
|
* (c) Colin O'Dell <[email protected]> |
|
9
|
|
|
* |
|
10
|
|
|
* Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) |
|
11
|
|
|
* - (c) John MacFarlane |
|
12
|
|
|
* |
|
13
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
14
|
|
|
* file that was distributed with this source code. |
|
15
|
|
|
*/ |
|
16
|
|
|
|
|
17
|
|
|
namespace League\CommonMark\Extension\SmartPunct; |
|
18
|
|
|
|
|
19
|
|
|
use League\CommonMark\Node\Inline\Text; |
|
20
|
|
|
use League\CommonMark\Parser\Inline\InlineParserInterface; |
|
21
|
|
|
use League\CommonMark\Parser\Inline\InlineParserMatch; |
|
22
|
|
|
use League\CommonMark\Parser\InlineParserContext; |
|
23
|
|
|
|
|
24
|
|
|
final class PunctuationParser implements InlineParserInterface |
|
25
|
|
|
{ |
|
26
|
51 |
|
public function getMatchDefinition(): InlineParserMatch |
|
27
|
|
|
{ |
|
28
|
51 |
|
return InlineParserMatch::oneOf('-', '.'); |
|
29
|
|
|
} |
|
30
|
|
|
|
|
31
|
36 |
|
public function parse(string $match, InlineParserContext $inlineContext): bool |
|
32
|
|
|
{ |
|
33
|
36 |
|
$cursor = $inlineContext->getCursor(); |
|
34
|
|
|
|
|
35
|
|
|
// Ellipses |
|
36
|
36 |
|
if ($match === '.' && $matched = $cursor->match('/^\\.( ?\\.)\\1/')) { |
|
|
|
|
|
|
37
|
3 |
|
$inlineContext->getContainer()->appendChild(new Text('…')); |
|
38
|
|
|
|
|
39
|
3 |
|
return true; |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
// Em/En-dashes |
|
43
|
36 |
|
if ($match === '-' && $matched = $cursor->match('/^(?<!-)(-{2,})/')) { |
|
44
|
6 |
|
$count = \strlen($matched); |
|
45
|
6 |
|
$enDash = '–'; |
|
46
|
6 |
|
$enCount = 0; |
|
47
|
6 |
|
$emDash = '—'; |
|
48
|
6 |
|
$emCount = 0; |
|
49
|
6 |
|
if ($count % 3 === 0) { // If divisible by 3, use all em dashes |
|
50
|
6 |
|
$emCount = (int) ($count / 3); |
|
51
|
6 |
|
} elseif ($count % 2 === 0) { // If divisible by 2, use all en dashes |
|
52
|
6 |
|
$enCount = (int) ($count / 2); |
|
53
|
3 |
|
} elseif ($count % 3 === 2) { // If 2 extra dashes, use en dash for last 2; em dashes for rest |
|
54
|
3 |
|
$emCount = (int) (($count - 2) / 3); |
|
55
|
3 |
|
$enCount = 1; |
|
56
|
|
|
} else { // Use en dashes for last 4 hyphens; em dashes for rest |
|
57
|
3 |
|
$emCount = (int) (($count - 4) / 3); |
|
58
|
3 |
|
$enCount = 2; |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
6 |
|
$inlineContext->getContainer()->appendChild(new Text( |
|
62
|
6 |
|
\str_repeat($emDash, $emCount) . \str_repeat($enDash, $enCount) |
|
63
|
|
|
)); |
|
64
|
|
|
|
|
65
|
6 |
|
return true; |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
33 |
|
return false; |
|
69
|
|
|
} |
|
70
|
|
|
} |
|
71
|
|
|
|