<?php
declare(strict_types=1);
namespace League\CommonMark\Extension\SmartPunct;
use League\CommonMark\Node\Inline\Text;
use League\CommonMark\Parser\Inline\InlineParserInterface;
use League\CommonMark\Parser\Inline\InlineParserMatch;
use League\CommonMark\Parser\InlineParserContext;
final class DashParser implements InlineParserInterface
{
private const EN_DASH = '–';
private const EM_DASH = '—';
public function getMatchDefinition(): InlineParserMatch
{
return InlineParserMatch::regex('(?<!-)(-{2,})');
}
public function parse(InlineParserContext $inlineContext): bool
{
$count = $inlineContext->getFullMatchLength();
$inlineContext->getCursor()->advanceBy($count);
$enCount = 0;
$emCount = 0;
if ($count % 3 === 0) {
$emCount = (int) ($count / 3);
} elseif ($count % 2 === 0) {
$enCount = (int) ($count / 2);
} elseif ($count % 3 === 2) {
$emCount = (int) (($count - 2) / 3);
$enCount = 1;
} else {
$emCount = (int) (($count - 4) / 3);
$enCount = 2;
}
$inlineContext->getContainer()->appendChild(new Text(
\str_repeat(self::EM_DASH, $emCount) . \str_repeat(self::EN_DASH, $enCount)
));
return true;
}
}