Completed
Push — 2.0 ( a89474...4b9bf2 )
by Colin
02:19 queued 02:16
created

IndentedCodeRenderer::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 10
ccs 7
cts 7
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
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\IndentedCode;
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 IndentedCodeRenderer implements NodeRendererInterface, XmlNodeRendererInterface
28
{
29
    /**
30
     * @param IndentedCode $node
31
     *
32
     * {@inheritDoc}
33
     *
34
     * @psalm-suppress MoreSpecificImplementedParamType
35
     */
36 162
    public function render(Node $node, ChildNodeRendererInterface $childRenderer)
37
    {
38 162
        IndentedCode::assertInstanceOf($node);
39
40 159
        $attrs = $node->data->get('attributes');
41
42 159
        return new HtmlElement(
43 159
            'pre',
44 159
            [],
45 159
            new HtmlElement('code', $attrs, Xml::escape($node->getLiteral()))
46
        );
47
    }
48
49 3
    public function getXmlTagName(Node $node): string
50
    {
51 3
        return 'code_block';
52
    }
53
54
    /**
55
     * @return array<string, scalar>
56
     */
57 3
    public function getXmlAttributes(Node $node): array
58
    {
59 3
        return [];
60
    }
61
}
62