-
Notifications
You must be signed in to change notification settings - Fork 18
/
MarkdownParse.php
286 lines (248 loc) · 9.53 KB
/
MarkdownParse.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<?php
namespace TypechoPlugin\MarkdownParse;
require_once __DIR__ . '/vendor/autoload.php';
use League\CommonMark\Environment\Environment;
use League\CommonMark\Extension\Autolink\AutolinkExtension;
use League\CommonMark\Extension\CommonMark\CommonMarkCoreExtension;
use League\CommonMark\Extension\CommonMark\Node\Block\FencedCode;
use League\CommonMark\Extension\DisallowedRawHtml\DisallowedRawHtmlExtension;
use League\CommonMark\Extension\TaskList\TaskListExtension;
use League\CommonMark\Extension\Strikethrough\StrikethroughExtension;
use League\CommonMark\Extension\Table\TableExtension;
use League\CommonMark\Extension\HeadingPermalink\HeadingPermalinkExtension;
use League\CommonMark\Extension\TableOfContents\TableOfContentsExtension;
use League\CommonMark\Extension\DescriptionList\DescriptionListExtension;
use League\CommonMark\Extension\ExternalLink\ExternalLinkExtension;
use League\CommonMark\Extension\Footnote\FootnoteExtension;
use League\CommonMark\MarkdownConverter;
use Wnx\CommonmarkMarkExtension\MarkExtension;
use League\CommonMark\Extension\DefaultAttributes\DefaultAttributesExtension;
use SimonVomEyser\CommonMarkExtension\LazyImageExtension;
use League\CommonMark\Event\DocumentPreRenderEvent;
use League\CommonMark\Node\Node;
use League\CommonMark\Node\Query;
use League\CommonMark\Node\Inline\Text;
class MarkdownParse
{
// Flag to determine if Table of Contents (TOC) is enabled
private bool $isTocEnable = false;
// Flag to determine if Mermaid support is needed
private bool $isNeedMermaid = false;
// Flag to determine if LaTex support is needed
private bool $isNeedLaTex = false;
// The internal hosts, supports regular expressions ("/(^|\.)example\.com$/"), multiple values can be separated by commas.
private string $internalHosts = '';
// Singleton instance of MarkdownParse
private static ?MarkdownParse $instance = null;
// Private constructor to enforce singleton pattern
private function __construct()
{
}
/**
* Get the singleton instance of MarkdownParse
*
* @return MarkdownParse The singleton instance
* @throws \RuntimeException If PHP version is less than 8.0
*/
public static function getInstance(): MarkdownParse
{
if (self::$instance === null) {
$requiredVersion = '8.0';
if (version_compare(phpversion(), $requiredVersion, '<')) {
throw new \RuntimeException('MarkdownParse requires PHP ' . $requiredVersion . ' or later.');
}
self::$instance = new self();
}
return self::$instance;
}
/**
* Parse the given text using CommonMark with optional configuration
*
* @param string $text The input Markdown text
* @param array $config Optional configuration for the parsing process
* @return string The parsed HTML content
*/
public function parse(string $text, array $config = []): string
{
list($text, $config) = $this->preParse($text, $config);
$environment = new Environment(array_merge($this->getConfig(), $config));
$this->addCommonMarkExtensions($environment);
$htmlContent = (new MarkdownConverter($environment))->convert($text)->getContent();
list($htmlContent, $config) = $this->postParse($htmlContent, $config);
return $htmlContent;
}
/**
* Placeholder function for actions to be performed before parsing
*
* @param string $text The input text
* @param array $config Optional configuration for the parsing process
* @return array Result of actions before parsing
*/
public function preParse(string $text, array $config = []): array
{
// Remove Table of Contents config if it is not enabled
if (!$this->isTocEnable) {
$config['table_of_contents']['placeholder'] = '';
}
// Set internal hosts for external link config
if (!empty($this->internalHosts)) {
$config['external_link']['internal_hosts'] = explode(',', $this->internalHosts);
}
// Check if LaTeX is needed by searching for $$ or $ in the text
if (!$this->isNeedLaTex) {
$this->isNeedLaTex = (bool)preg_match('/\${1,2}[^`]*?\${1,2}/m', $text);
}
// Replace double $$ at the beginning and end of the text with <div> tags
if ($this->isNeedLaTex) {
$text = preg_replace('/(^\${2,})([\s\S]+?)(\${2,})/m', '<div>$1$2$3</div>', $text, -1);
}
return [$text, $config];
}
/**
* Placeholder function for actions to be performed after parsing
*
* @param string $htmlContent The parsed HTML content
* @param array $config Optional configuration for the parsing process
* @return array Result of actions after parsing
*/
public function postParse(string $htmlContent, array $config = []): array
{
// If Mermaid is needed, replace the class attribute of Mermaid code blocks
if ($this->isNeedMermaid) {
$htmlContent = str_replace(['<code class="language-mermaid">'], '<code class="mermaid">', $htmlContent);
}
// If LaTeX is needed, remove <div> tags added during preParse
if ($this->isNeedLaTex) {
$htmlContent = str_replace(['<div>$$', '$$</div>'], '$$', $htmlContent);
}
return [$htmlContent, $config];
}
/**
* Get the default configuration settings
*
* @return array The default configuration settings
*/
public function getConfig(): array
{
$instance = $this::getInstance();
$defaultConfig = [
'table_of_contents' => [
'position' => 'placeholder',
'placeholder' => '[TOC]',
],
'external_link' => [
'internal_hosts' => [],
'open_in_new_window' => true,
],
'heading_permalink' => [
'symbol' => '',
],
'default_attributes' => [
FencedCode::class => [
'class' => static function (FencedCode $node) use ($instance) {
$infoWords = $node->getInfoWords();
if (\count($infoWords) !== 0 && $infoWords[0] === 'mermaid') {
$instance->setIsNeedMermaid(true);
}
return null;
},
]
]
];
return $defaultConfig;
}
/**
* Add CommonMark extensions to the given environment
*
* @param Environment $environment The CommonMark environment
*/
private function addCommonMarkExtensions(Environment $environment): void
{
$environment->addExtension(new CommonMarkCoreExtension());
$environment->addExtension(new AutolinkExtension());
$environment->addExtension(new DisallowedRawHtmlExtension());
$environment->addExtension(new StrikethroughExtension());
$environment->addExtension(new ExternalLinkExtension());
$environment->addExtension(new FootnoteExtension());
$environment->addExtension(new TableExtension());
$environment->addExtension(new TaskListExtension());
$environment->addExtension(new HeadingPermalinkExtension());
$environment->addExtension(new DescriptionListExtension());
$environment->addExtension(new MarkExtension());
$environment->addExtension(new DefaultAttributesExtension());
$environment->addExtension(new TableOfContentsExtension());
$environment->addExtension(new LazyImageExtension());
}
/**
* Get the flag indicating if Table of Contents (TOC) is enabled
*
* @return bool The flag indicating if TOC is enabled
*/
public function getIsTocEnable(): bool
{
return $this->isTocEnable;
}
/**
* Set the flag indicating if Table of Contents (TOC) should be enabled
*
* @param bool $isTocEnable The flag indicating if TOC should be enabled
*/
public function setIsTocEnable(bool $isTocEnable): void
{
$this->isTocEnable = $isTocEnable;
}
/**
* Get the flag indicating if Mermaid support is needed
*
* @return bool The flag indicating if Mermaid support is needed
*/
public function getIsNeedMermaid(): bool
{
return $this->isNeedMermaid;
}
/**
* Set the flag indicating if Mermaid support is needed
*
* @param bool $isNeedMermaid The flag indicating if Mermaid support is needed
*/
public function setIsNeedMermaid(bool $isNeedMermaid): void
{
$this->isNeedMermaid = $isNeedMermaid;
}
/**
* Get the flag indicating if LaTex support is needed
*
* @return bool The flag indicating if LaTex support is needed
*/
public function getIsNeedLaTex(): bool
{
return $this->isNeedLaTex;
}
/**
* Set the flag indicating if LaTex support is needed
*
* @param bool $isNeedLaTex The flag indicating if LaTex support is needed
*/
public function setIsNeedLaTex(bool $isNeedLaTex): void
{
$this->isNeedLaTex = $isNeedLaTex;
}
/**
* Get the internal hosts value
*
* @return string The internal hosts value
*/
public function getInternalHosts(): string
{
return $this->internalHosts;
}
/**
* Set the internal hosts value
*
* @param string $internalHosts The internal hosts value
*/
public function setInternalHosts(string $internalHosts): void
{
$this->internalHosts = $internalHosts;
}
}