1 | <?php |
||
8 | class Converter { |
||
9 | /** |
||
10 | * @var \League\HTMLToMarkdown\HtmlConverter |
||
11 | */ |
||
12 | protected $converter; |
||
13 | |||
14 | public function __construct() |
||
22 | |||
23 | /** |
||
24 | * @return \League\HTMLToMarkdown\HtmlConverter |
||
25 | */ |
||
26 | public function getConverter() |
||
30 | |||
31 | /** |
||
32 | * @param string $html |
||
33 | * @return string |
||
34 | */ |
||
35 | public function convert($html) |
||
40 | |||
41 | /** |
||
42 | * @param string $markdown |
||
43 | * @return string |
||
44 | */ |
||
45 | protected function processMarkdown($markdown) |
||
53 | } |
||
54 |