1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
/* |
6
|
|
|
* This file is part of the league/commonmark package. |
7
|
|
|
* |
8
|
|
|
* (c) Colin O'Dell <[email protected]> |
9
|
|
|
* |
10
|
|
|
* Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js) |
11
|
|
|
* - (c) John MacFarlane |
12
|
|
|
* |
13
|
|
|
* For the full copyright and license information, please view the LICENSE |
14
|
|
|
* file that was distributed with this source code. |
15
|
|
|
*/ |
16
|
|
|
|
17
|
|
|
namespace League\CommonMark\Extension\CommonMark\Renderer\Block; |
18
|
|
|
|
19
|
|
|
use League\CommonMark\Extension\CommonMark\Node\Block\BlockQuote; |
20
|
|
|
use League\CommonMark\Node\Node; |
21
|
|
|
use League\CommonMark\Renderer\ChildNodeRendererInterface; |
22
|
|
|
use League\CommonMark\Renderer\NodeRendererInterface; |
23
|
|
|
use League\CommonMark\Util\HtmlElement; |
24
|
|
|
use League\CommonMark\Xml\XmlNodeRendererInterface; |
25
|
|
|
|
26
|
|
|
final class BlockQuoteRenderer implements NodeRendererInterface, XmlNodeRendererInterface |
27
|
|
|
{ |
28
|
|
|
/** |
29
|
|
|
* @param BlockQuote $node |
30
|
|
|
* |
31
|
|
|
* {@inheritDoc} |
32
|
|
|
* |
33
|
|
|
* @psalm-suppress MoreSpecificImplementedParamType |
34
|
|
|
*/ |
35
|
165 |
|
public function render(Node $node, ChildNodeRendererInterface $childRenderer) |
36
|
|
|
{ |
37
|
165 |
|
BlockQuote::assertInstanceOf($node); |
38
|
|
|
|
39
|
162 |
|
$attrs = $node->data->get('attributes'); |
40
|
|
|
|
41
|
162 |
|
$filling = $childRenderer->renderNodes($node->children()); |
42
|
162 |
|
$innerSeparator = $childRenderer->getInnerSeparator(); |
43
|
162 |
|
if ($filling === '') { |
44
|
12 |
|
return new HtmlElement('blockquote', $attrs, $innerSeparator); |
45
|
|
|
} |
46
|
|
|
|
47
|
150 |
|
return new HtmlElement( |
48
|
150 |
|
'blockquote', |
49
|
|
|
$attrs, |
50
|
150 |
|
$innerSeparator . $filling . $innerSeparator |
51
|
|
|
); |
52
|
|
|
} |
53
|
|
|
|
54
|
3 |
|
public function getXmlTagName(Node $node): string |
55
|
|
|
{ |
56
|
3 |
|
return 'block_quote'; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @param BlockQuote $node |
61
|
|
|
* |
62
|
|
|
* @return array<string, scalar> |
63
|
|
|
* |
64
|
|
|
* @psalm-suppress MoreSpecificImplementedParamType |
65
|
|
|
*/ |
66
|
3 |
|
public function getXmlAttributes(Node $node): array |
67
|
|
|
{ |
68
|
3 |
|
return []; |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
|