Completed
Push — master ( 7a6aee...e5c914 )
by Colin
52:42 queued 27:44
created

src/Block/Renderer/FencedCodeRenderer.php (3 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
22
class FencedCodeRenderer implements BlockRendererInterface
23
{
24
    /**
25
     * @param FencedCode               $block
26
     * @param ElementRendererInterface $htmlRenderer
27
     * @param bool                     $inTightList
28
     *
29
     * @return HtmlElement
30
     */
31 111
    public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, $inTightList = false)
32
    {
33 111
        if (!($block instanceof FencedCode)) {
34 3
            throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block));
35
        }
36
37 108
        $attrs = [];
38 108
        foreach ($block->getData('attributes', []) as $key => $value) {
39 6
            $attrs[$key] = $htmlRenderer->escape($value, true);
0 ignored issues
show
Deprecated Code introduced by
The method League\CommonMark\Elemen...ererInterface::escape() has been deprecated.

This method has been deprecated.

Loading history...
40 72
        }
41
42 108
        $infoWords = $block->getInfoWords();
43 108
        if (count($infoWords) !== 0 && strlen($infoWords[0]) !== 0) {
44 18
            $attrs['class'] = isset($attrs['class']) ? $attrs['class'] . ' ' : '';
45 18
            $attrs['class'] .= 'language-' . $htmlRenderer->escape($infoWords[0], true);
0 ignored issues
show
Deprecated Code introduced by
The method League\CommonMark\Elemen...ererInterface::escape() has been deprecated.

This method has been deprecated.

Loading history...
46 12
        }
47
48 108
        return new HtmlElement(
49 108
            'pre',
50 108
            [],
51 108
            new HtmlElement('code', $attrs, $htmlRenderer->escape($block->getStringContent()))
0 ignored issues
show
Deprecated Code introduced by
The method League\CommonMark\Elemen...ererInterface::escape() has been deprecated.

This method has been deprecated.

Loading history...
52 72
        );
53
    }
54
}
55