addExtension(new CommonMarkCoreExtension()); $this->parser = new MarkdownParser($environment); } public function load(string $path) { $markdown = file_get_contents($path); $this->document = $this->parser->parse($markdown); return $this->document; } }