Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class MarkdownContentParser extends AbstractContentParser implements MarkdownContentParserInterface |
||
10 | { |
||
11 | /** |
||
12 | * Parse the file's Markdown into HTML Content |
||
13 | */ |
||
14 | protected function getHTMLContent(string $fileContent): string |
||
15 | { |
||
16 | return $this->convertMarkdownToHTML($fileContent); |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Parse the file's Markdown into HTML Content |
||
21 | */ |
||
22 | public function convertMarkdownToHTML(string $markdownContent): string |
||
25 | } |
||
26 | } |
||
27 |