Вход Регистрация
Файл: vendor/league/commonmark/src/Extension/Footnote/Parser/AnonymousFootnoteRefParser.php
Строк: 151
<?php

/*
 * This file is part of the league/commonmark package.
 *
 * (c) Colin O'Dell <colinodell@gmail.com>
 * (c) Rezo Zero / Ambroise Maupate
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace 
LeagueCommonMarkExtensionFootnoteParser;

use 
LeagueCommonMarkEnvironmentEnvironmentAwareInterface;
use 
LeagueCommonMarkEnvironmentEnvironmentInterface;
use 
LeagueCommonMarkExtensionFootnoteNodeFootnoteRef;
use 
LeagueCommonMarkNormalizerTextNormalizerInterface;
use 
LeagueCommonMarkParserInlineInlineParserInterface;
use 
LeagueCommonMarkParserInlineInlineParserMatch;
use 
LeagueCommonMarkParserInlineParserContext;
use 
LeagueCommonMarkReferenceReference;
use 
LeagueConfigConfigurationInterface;

final class 
AnonymousFootnoteRefParser implements InlineParserInterfaceEnvironmentAwareInterface
{
    private 
ConfigurationInterface $config;

    
/** @psalm-readonly-allow-private-mutation */
    
private TextNormalizerInterface $slugNormalizer;

    public function 
getMatchDefinition(): InlineParserMatch
    
{
        return 
InlineParserMatch::regex('^[([^]]+)]');
    }

    public function 
parse(InlineParserContext $inlineContext): bool
    
{
        
$inlineContext->getCursor()->advanceBy($inlineContext->getFullMatchLength());

        [
$label]   = $inlineContext->getSubMatches();
        
$reference $this->createReference($label);
        
$inlineContext->getContainer()->appendChild(new FootnoteRef($reference$label));

        return 
true;
    }

    private function 
createReference(string $label): Reference
    
{
        
$refLabel $this->slugNormalizer->normalize($label, ['length' => 20]);

        return new 
Reference(
            
$refLabel,
            
'#' $this->config->get('footnote/footnote_id_prefix') . $refLabel,
            
$label
        
);
    }

    public function 
setEnvironment(EnvironmentInterface $environment): void
    
{
        
$this->config         $environment->getConfiguration();
        
$this->slugNormalizer $environment->getSlugNormalizer();
    }
}
Онлайн: 1
Реклама