generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
HintRenderer.php
55 lines (47 loc) · 1.39 KB
/
HintRenderer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace Ueberdosis\CommonMark;
use League\CommonMark\Node\Node;
use League\CommonMark\Renderer\ChildNodeRendererInterface;
use League\CommonMark\Renderer\NodeRendererInterface;
use League\CommonMark\Util\HtmlElement;
final class HintRenderer implements NodeRendererInterface
{
/**
* @param Hint $node
*
* {@inheritDoc}
*
* @psalm-suppress MoreSpecificImplementedParamType
*/
public function render(Node $node, ChildNodeRendererInterface $childRenderer): \Stringable
{
Hint::assertInstanceOf($node);
$attrs = $node->data->get('attributes');
isset($attrs['class']) ? $attrs['class'] .= ' hint' : $attrs['class'] = 'hint';
if ($type = $node->getType()) {
$attrs['class'] = isset($attrs['class']) ? $attrs['class'] . ' ' : '';
$attrs['class'] .= $type;
}
$title = $node->getTitle();
$title = $title
? new HtmlElement(
'h2',
['class' => 'hint-title'],
$title,
)
: '';
$content = new HtmlElement(
'p',
['class' => 'hint-content'],
$childRenderer->renderNodes($node->children())
);
return new HtmlElement(
'div',
$attrs,
"\n" .
$title . "\n" .
$content .
"\n"
);
}
}