Completed
Push — master ( d34918...5fbd84 )
by Colin
03:02
created

FencedCodeRenderer::render()   A

Complexity

Conditions 5
Paths 4

Size

Total Lines 20

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 12
CRAP Score 5

Importance

Changes 0
Metric Value
dl 0
loc 20
ccs 12
cts 12
cp 1
rs 9.2888
c 0
b 0
f 0
cc 5
nc 4
nop 3
crap 5
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\Block\Renderer;
16
17
use League\CommonMark\Block\Element\AbstractBlock;
18
use League\CommonMark\Block\Element\FencedCode;
19
use League\CommonMark\ElementRendererInterface;
20
use League\CommonMark\HtmlElement;
21
use League\CommonMark\Util\Xml;
22
23
class FencedCodeRenderer implements BlockRendererInterface
24
{
25
    /**
26
     * @param FencedCode               $block
27
     * @param ElementRendererInterface $htmlRenderer
28
     * @param bool                     $inTightList
29
     *
30
     * @return HtmlElement
31
     */
32 114
    public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false)
33
    {
34 114
        if (!($block instanceof FencedCode)) {
35 3
            throw new \InvalidArgumentException('Incompatible block type: ' . \get_class($block));
36
        }
37
38 111
        $attrs = $block->getData('attributes', []);
39
40 111
        $infoWords = $block->getInfoWords();
41 111
        if (count($infoWords) !== 0 && \strlen($infoWords[0]) !== 0) {
42 21
            $attrs['class'] = isset($attrs['class']) ? $attrs['class'] . ' ' : '';
43 21
            $attrs['class'] .= 'language-' . $infoWords[0];
44
        }
45
46 111
        return new HtmlElement(
47 111
            'pre',
48 111
            [],
49 111
            new HtmlElement('code', $attrs, Xml::escape($block->getStringContent()))
50
        );
51
    }
52
}
53