Вход Регистрация
Файл: vendor/league/commonmark/src/Extension/Footnote/Renderer/FootnoteContainerRenderer.php
Строк: 138
<?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 
LeagueCommonMarkExtensionFootnoteRenderer;

use 
LeagueCommonMarkExtensionFootnoteNodeFootnoteContainer;
use 
LeagueCommonMarkNodeNode;
use 
LeagueCommonMarkRendererChildNodeRendererInterface;
use 
LeagueCommonMarkRendererNodeRendererInterface;
use 
LeagueCommonMarkUtilHtmlElement;
use 
LeagueCommonMarkXmlXmlNodeRendererInterface;
use 
LeagueConfigConfigurationAwareInterface;
use 
LeagueConfigConfigurationInterface;

final class 
FootnoteContainerRenderer implements NodeRendererInterfaceXmlNodeRendererInterfaceConfigurationAwareInterface
{
    private 
ConfigurationInterface $config;

    
/**
     * @param FootnoteContainer $node
     *
     * {@inheritDoc}
     *
     * @psalm-suppress MoreSpecificImplementedParamType
     */
    
public function render(Node $nodeChildNodeRendererInterface $childRenderer): Stringable
    
{
        
FootnoteContainer::assertInstanceOf($node);

        
$attrs $node->data->getData('attributes');

        
$attrs->append('class'$this->config->get('footnote/container_class'));
        
$attrs->set('role''doc-endnotes');

        
$contents = new HtmlElement('ol', [], $childRenderer->renderNodes($node->children()));
        if (
$this->config->get('footnote/container_add_hr')) {
            
$contents = [new HtmlElement('hr', [], nulltrue), $contents];
        }

        return new 
HtmlElement('div'$attrs->export(), $contents);
    }

    public function 
setConfiguration(ConfigurationInterface $configuration): void
    
{
        
$this->config $configuration;
    }

    public function 
getXmlTagName(Node $node): string
    
{
        return 
'footnote_container';
    }

    
/**
     * @return array<string, scalar>
     */
    
public function getXmlAttributes(Node $node): array
    {
        return [];
    }
}
Онлайн: 1
Реклама