1 | <?php |
||
21 | class Wrapper |
||
22 | { |
||
23 | |||
24 | public $md; |
||
25 | public $html; |
||
26 | protected $text = ''; |
||
27 | protected $isMd = false; |
||
28 | protected $isHtml = false; |
||
29 | |||
30 | public function __construct($text) |
||
36 | |||
37 | public function __get($name) |
||
41 | |||
42 | public function md() |
||
47 | |||
48 | /** |
||
49 | * Get code for HTML formatting. |
||
50 | * @return Wrapper |
||
51 | */ |
||
52 | public function html() |
||
57 | |||
58 | public function __toString() |
||
79 | |||
80 | } |
||
81 |