Completed
Push — master ( 6c85d2...15e8d5 )
by Colin
04:57
created

HeadingRenderer   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
c 1
b 0
f 0
lcom 0
cbo 3
dl 0
loc 25
ccs 9
cts 9
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 15 3
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 (http://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\Heading;
19
use League\CommonMark\ElementRendererInterface;
20
use League\CommonMark\HtmlElement;
21
22
class HeadingRenderer implements BlockRendererInterface
23
{
24
    /**
25
     * @param Heading                  $block
26
     * @param ElementRendererInterface $htmlRenderer
27
     * @param bool                     $inTightList
28
     *
29
     * @return HtmlElement
30
     */
31 126
    public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, $inTightList = false)
32
    {
33 126
        if (!($block instanceof Heading)) {
34 3
            throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block));
35
        }
36
37 123
        $tag = 'h' . $block->getLevel();
38
39 123
        $attrs = [];
40 123
        foreach ($block->getData('attributes', []) as $key => $value) {
41 18
            $attrs[$key] = $htmlRenderer->escape($value, true);
42 123
        }
43
44 123
        return new HtmlElement($tag, $attrs, $htmlRenderer->renderInlines($block->children()));
45
    }
46
}
47