diff --git a/lib/pico.php b/lib/pico.php index 5d4e00d..ffcd1a5 100644 --- a/lib/pico.php +++ b/lib/pico.php @@ -149,7 +149,8 @@ class Pico { $content = preg_replace('#/\*.+?\*/#s', '', $content, 1); // Remove first comment (with meta) $content = str_replace('%base_url%', $this->base_url(), $content); - $content = (new ParsedownExtra())->text($content); + $Parsedown = new ParsedownExtra(); + $content= $Parsedown->text($content); return $content; }