1 | <?php |
||
5 | class MarkdownFormatter implements FormatterInterface |
||
6 | { |
||
7 | /** |
||
8 | * @param $text |
||
9 | * @param int $level |
||
10 | * |
||
11 | * @return string |
||
12 | */ |
||
13 | public function asTitle($text, $level = 1) |
||
17 | |||
18 | /** |
||
19 | * @param $text |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | public function asBody($text) |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getDelimiter() |
||
35 | } |
||
36 |