Completed
Push — master ( 9c0ec2...8f230f )
by Colin
02:38
created

src/Block/Renderer/ListItemRenderer.php (1 issue)

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\ListItem;
19
use League\CommonMark\ElementRendererInterface;
20
use League\CommonMark\HtmlElement;
21
22
class ListItemRenderer implements BlockRendererInterface
23
{
24
    /**
25
     * @param ListItem                 $block
26
     * @param ElementRendererInterface $htmlRenderer
27
     * @param bool                     $inTightList
28
     *
29
     * @return string
30
     */
31 243
    public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, $inTightList = false)
32
    {
33 243
        if (!($block instanceof ListItem)) {
34 3
            throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block));
35
        }
36
37 240
        $contents = $htmlRenderer->renderBlocks($block->children(), $inTightList);
38 240
        if (substr($contents, 0, 1) === '<') {
39 129
            $contents = "\n" . $contents;
40 43
        }
41 240
        if (substr($contents, -1, 1) === '>') {
42 147
            $contents .= "\n";
43 49
        }
44
45 240
        $attrs = [];
46 240
        foreach ($block->getData('attributes', []) as $key => $value) {
47 3
            $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...
48 80
        }
49
50 240
        $li = new HtmlElement('li', $attrs, $contents);
51
52 240
        return $li;
53
    }
54
}
55