Completed
Push — master ( 0b0b24...54ff37 )
by Colin
02:37
created

IndentedCodeRenderer::render()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 14
ccs 8
cts 8
cp 1
rs 9.7998
c 0
b 0
f 0
cc 2
nc 2
nop 3
crap 2
1
<?php
2
3
/*
4
 * This file is part of the league/commonmark package.
5
 *
6
 * (c) Colin O'Dell <[email protected]>
7
 *
8
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
9
 *  - (c) John MacFarlane
10
 *
11
 * For the full copyright and license information, please view the LICENSE
12
 * file that was distributed with this source code.
13
 */
14
15
namespace League\CommonMark\Extension\CommonMark\Renderer\Block;
16
17
use League\CommonMark\Extension\CommonMark\Node\Block\IndentedCode;
18
use League\CommonMark\Node\Block\AbstractBlock;
19
use League\CommonMark\Renderer\Block\BlockRendererInterface;
20
use League\CommonMark\Renderer\ElementRendererInterface;
21
use League\CommonMark\Util\HtmlElement;
22
use League\CommonMark\Util\Xml;
23
24
final class IndentedCodeRenderer implements BlockRendererInterface
25
{
26
    /**
27
     * @param IndentedCode             $block
28
     * @param ElementRendererInterface $htmlRenderer
29
     * @param bool                     $inTightList
30
     *
31
     * @return HtmlElement
32
     */
33 156
    public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false)
34
    {
35 156
        if (!($block instanceof IndentedCode)) {
36 3
            throw new \InvalidArgumentException('Incompatible block type: ' . \get_class($block));
37
        }
38
39 153
        $attrs = $block->getData('attributes', []);
40
41 153
        return new HtmlElement(
42 153
            'pre',
43 153
            [],
44 153
            new HtmlElement('code', $attrs, Xml::escape($block->getStringContent()))
45
        );
46
    }
47
}
48