blob: 27a18adb945e1d1212df65bce40c61a0769df979 (
plain)
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
|
<?php
namespace Parsers;
use Parsedown;
class MarkdownParser implements ParserInterface {
private $Parsedown;
#===========================================================================
# Initialize
#===========================================================================
public function __construct() {
$this->Parsedown = new Parsedown();
$this->Parsedown->setUrlsLinked(FALSE);
}
#===========================================================================
# Parse Markdown (currently only images)
#===========================================================================
public function parse(string $text): array {
$image = '#\!\[(.*)\]\((.*)(?:\s[\'"](.*)[\'"])?\)#U';
if(preg_match_all($image, $text, $matches)) {
$data['img']['src'] = $matches[2];
$data['img']['alt'] = $matches[1];
$data['img']['title'] = $matches[3];
}
return $data ?? [];
}
#===========================================================================
# Transform Markdown to HTML
#===========================================================================
public function transform(string $text): string {
return $this->Parsedown->text($text);
}
}
|