Файл: vendor/league/commonmark/src/Extension/SmartPunct/ReplaceUnpairedQuotesListener.php
Строк: 55
<?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 LeagueCommonMarkExtensionSmartPunct;
use LeagueCommonMarkEventDocumentParsedEvent;
use LeagueCommonMarkNodeInlineAdjacentTextMerger;
use LeagueCommonMarkNodeInlineText;
use LeagueCommonMarkNodeQuery;
/**
* Identifies any lingering Quote nodes that were missing pairs and converts them into Text nodes
*/
final class ReplaceUnpairedQuotesListener
{
public function __invoke(DocumentParsedEvent $event): void
{
$query = (new Query())->where(Query::type(Quote::class));
foreach ($query->findAll($event->getDocument()) as $quote) {
assert($quote instanceof Quote);
$literal = $quote->getLiteral();
if ($literal === Quote::SINGLE_QUOTE) {
$literal = Quote::SINGLE_QUOTE_CLOSER;
} elseif ($literal === Quote::DOUBLE_QUOTE) {
$literal = Quote::DOUBLE_QUOTE_OPENER;
}
$quote->replaceWith($new = new Text($literal));
AdjacentTextMerger::mergeWithDirectlyAdjacentNodes($new);
}
}
}