1 | <?php |
||
25 | class HtmlRenderer implements ElementRendererInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var EnvironmentInterface |
||
29 | */ |
||
30 | protected $environment; |
||
31 | |||
32 | /** |
||
33 | * @param EnvironmentInterface $environment |
||
34 | */ |
||
35 | 1950 | public function __construct(EnvironmentInterface $environment) |
|
39 | |||
40 | /** |
||
41 | * @param string $option |
||
42 | * @param mixed $default |
||
43 | * |
||
44 | * @return mixed|null |
||
45 | */ |
||
46 | 1941 | public function getOption(string $option, $default = null) |
|
50 | |||
51 | /** |
||
52 | * @param AbstractInline $inline |
||
53 | * |
||
54 | * @throws \RuntimeException |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | 1659 | protected function renderInline(AbstractInline $inline): string |
|
71 | |||
72 | /** |
||
73 | * @param AbstractInline[] $inlines |
||
74 | * |
||
75 | * @return string |
||
76 | */ |
||
77 | 1662 | public function renderInlines(iterable $inlines): string |
|
86 | |||
87 | /** |
||
88 | * @param AbstractBlock $block |
||
89 | * @param bool $inTightList |
||
90 | * |
||
91 | * @throws \RuntimeException |
||
92 | * |
||
93 | * @return string |
||
94 | */ |
||
95 | 1941 | public function renderBlock(AbstractBlock $block, bool $inTightList = false): string |
|
108 | |||
109 | /** |
||
110 | * @param AbstractBlock[] $blocks |
||
111 | * @param bool $inTightList |
||
112 | * |
||
113 | * @return string |
||
114 | */ |
||
115 | 1941 | public function renderBlocks(iterable $blocks, bool $inTightList = false): string |
|
126 | } |
||
127 |