generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathMarkdownRenderer.php
230 lines (180 loc) · 7.02 KB
/
MarkdownRenderer.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
namespace Spatie\LaravelMarkdown;
use League\CommonMark\Environment\Environment;
use League\CommonMark\Environment\EnvironmentBuilderInterface;
use League\CommonMark\Extension\CommonMark\CommonMarkCoreExtension;
use League\CommonMark\Extension\CommonMark\Node\Block\Heading;
use League\CommonMark\Extension\ExtensionInterface;
use League\CommonMark\MarkdownConverter;
use League\CommonMark\Output\RenderedContentInterface;
use League\CommonMark\Renderer\NodeRendererInterface;
use Spatie\CommonMarkShikiHighlighter\HighlightCodeExtension;
use Spatie\LaravelMarkdown\Renderers\AnchorHeadingRenderer;
class MarkdownRenderer
{
/**
* @param string|array<string|string> $highlightTheme Can be a single theme or an associative array to support multiple themes
*/
public function __construct(
protected array $commonmarkOptions = [],
protected bool $highlightCode = true,
protected mixed $highlightTheme = 'github-light',
protected string | bool | null $cacheStoreName = null,
protected bool $renderAnchors = true,
protected bool $renderAnchorsAsLinks = false,
protected array $extensions = [],
protected array $blockRenderers = [],
protected array $inlineRenderers = [],
protected array $inlineParsers = [],
protected int | null $cacheDuration = null,
) {
}
public function commonmarkOptions(array $options): self
{
$this->commonmarkOptions = $options;
return $this;
}
public function highlightCode(bool $highlightCode = true): self
{
$this->highlightCode = $highlightCode;
return $this;
}
public function disableHighlighting(): self
{
$this->highlightCode = false;
return $this;
}
/**
* @param string|array<string|string> $highlightTheme Can be a single theme or an associative array to support multiple themes
*/
public function highlightTheme(mixed $highlightTheme): self
{
$this->highlightTheme = $highlightTheme;
return $this;
}
public function cacheStoreName(string | bool | null $cacheStoreName): self
{
$this->cacheStoreName = $cacheStoreName;
return $this;
}
public function cacheDuration(int | null $cacheDuration): self
{
$this->cacheDuration = $cacheDuration;
return $this;
}
public function renderAnchors(bool $renderAnchors): self
{
$this->renderAnchors = $renderAnchors;
return $this;
}
public function disableAnchors(): self
{
$this->renderAnchors = false;
return $this;
}
public function renderAnchorsAsLinks(bool $renderAnchorsAsLinks): self
{
$this->renderAnchorsAsLinks = $renderAnchorsAsLinks;
return $this;
}
public function enableAnchorsAsLinks(): self
{
$this->renderAnchorsAsLinks = true;
return $this;
}
public function addExtension(ExtensionInterface $extension): self
{
$this->extensions[] = $extension;
return $this;
}
public function addBlockRenderer(string $blockClass, NodeRendererInterface $blockRenderer, ?int $priority = 0): self
{
$this->blockRenderers[] = ['class' => $blockClass, 'renderer' => $blockRenderer, 'priority' => $priority];
return $this;
}
public function addInlineRenderer(string $inlineClass, NodeRendererInterface $inlineRenderer, ?int $priority = 0): self
{
$this->inlineRenderers[] = ['class' => $inlineClass, 'renderer' => $inlineRenderer, 'priority' => $priority];
return $this;
}
public function toHtml(string $markdown): string
{
if ($this->cacheStoreName === false) {
return $this->convertMarkdownToHtml($markdown);
}
$cacheKey = $this->getCacheKey($markdown);
if ($this->cacheDuration === null) {
return cache()
->store($this->cacheStoreName)
->rememberForever($cacheKey, function () use ($markdown) {
return $this->convertMarkdownToHtml($markdown);
});
}
return cache()
->store($this->cacheStoreName)
->remember($cacheKey, $this->cacheDuration, function () use ($markdown) {
return $this->convertMarkdownToHtml($markdown);
});
}
protected function getCacheKey(string $markdown): string
{
$options = json_encode([
'theme' => $this->highlightTheme,
'render_anchors' => $this->renderAnchors,
'commonmark_options' => $this->commonmarkOptions,
]);
return md5("markdown{$markdown}{$options}");
}
protected function convertMarkdownToHtml(string $markdown): string
{
return $this->getMarkdownConverter()->convert($markdown);
}
protected function getClassInstance($class)
{
if (is_string($class) && class_exists($class)) {
$class = new $class();
}
return $class;
}
protected function configureCommonMarkEnvironment(EnvironmentBuilderInterface $environment): void
{
$environment->addExtension(new CommonMarkCoreExtension());
if ($this->highlightCode) {
$environment->addExtension(new HighlightCodeExtension($this->highlightTheme));
}
if ($this->renderAnchors) {
$environment->addRenderer(Heading::class, new AnchorHeadingRenderer($this->renderAnchorsAsLinks));
}
foreach ($this->extensions as $extension) {
$environment->addExtension($this->getClassInstance($extension));
}
foreach ($this->blockRenderers as $blockRenderer) {
$environment->addRenderer($blockRenderer['class'], $this->getClassInstance($blockRenderer['renderer']), $blockRenderer['priority'] ?? 0);
}
foreach ($this->inlineRenderers as $inlineRenderer) {
$environment->addRenderer($inlineRenderer['class'], $this->getClassInstance($inlineRenderer['renderer']), $inlineRenderer['priority'] ?? 0);
}
foreach ($this->inlineParsers as $inlineParser) {
$environment->addInlineParser($this->getClassInstance($inlineParser['parser']), $inlineParser['priority'] ?? 0);
}
}
private function getMarkdownConverter(): MarkdownConverter
{
$commonmarkOptions = $this->commonmarkOptions;
if (isset($commonmarkOptions['embed'])) {
$commonmarkOptions['embed']['adapter'] = $this->getClassInstance($commonmarkOptions['embed']['adapter']);
}
foreach ($commonmarkOptions['embeds'] ?? [] as $i => $embed) {
$commonmarkOptions['embeds'][$i] = $this->getClassInstance($embed);
}
$environment = new Environment($commonmarkOptions);
$this->configureCommonMarkEnvironment($environment);
return new MarkdownConverter(
environment: $environment
);
}
public function convertToHtml(string $markdown): RenderedContentInterface
{
return $this->getMarkdownConverter()->convert($markdown);
}
}