FencedCodeRenderer::getXmlTagName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
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 (https://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\CommonMark\Renderer\Block;
18
19
use League\CommonMark\Extension\CommonMark\Node\Block\FencedCode;
20
use League\CommonMark\Node\Node;
21
use League\CommonMark\Renderer\ChildNodeRendererInterface;
22
use League\CommonMark\Renderer\NodeRendererInterface;
23
use League\CommonMark\Util\HtmlElement;
24
use League\CommonMark\Util\Xml;
25
use League\CommonMark\Xml\XmlNodeRendererInterface;
26
27
final class FencedCodeRenderer implements NodeRendererInterface, XmlNodeRendererInterface
28
{
29
    /**
30
     * @param FencedCode $node
31
     *
32
     * {@inheritDoc}
33
     *
34
     * @psalm-suppress MoreSpecificImplementedParamType
35
     */
36 92
    public function render(Node $node, ChildNodeRendererInterface $childRenderer): \Stringable
37
    {
38 92
        FencedCode::assertInstanceOf($node);
39
40 90
        $attrs = $node->data->getData('attributes');
41
42 90
        $infoWords = $node->getInfoWords();
43 90
        if (\count($infoWords) !== 0 && $infoWords[0] !== '') {
44 26
            $class = $infoWords[0];
45 26
            if (! \str_starts_with($class, 'language-')) {
46 26
                $class = 'language-' . $class;
47
            }
48
49 26
            $attrs->append('class', $class);
50
        }
51
52 90
        return new HtmlElement(
53 90
            'pre',
54 90
            [],
55 90
            new HtmlElement('code', $attrs->export(), Xml::escape($node->getLiteral()))
56 90
        );
57
    }
58
59 2
    public function getXmlTagName(Node $node): string
60
    {
61 2
        return 'code_block';
62
    }
63
64
    /**
65
     * @param FencedCode $node
66
     *
67
     * @return array<string, scalar>
68
     *
69
     * @psalm-suppress MoreSpecificImplementedParamType
70
     */
71 2
    public function getXmlAttributes(Node $node): array
72
    {
73 2
        FencedCode::assertInstanceOf($node);
74
75 2
        if (($info = $node->getInfo()) === null || $info === '') {
76 2
            return [];
77
        }
78
79 2
        return ['info' => $info];
80
    }
81
}
82