From b1f3bc4ca182f22f3da443d20435d799637b4f32 Mon Sep 17 00:00:00 2001 From: Christian Raue Date: Thu, 20 Aug 2015 09:02:23 +0200 Subject: [PATCH] fix the `no_html` option --- Parser/MarkdownParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parser/MarkdownParser.php b/Parser/MarkdownParser.php index 3050c54..e24d262 100644 --- a/Parser/MarkdownParser.php +++ b/Parser/MarkdownParser.php @@ -105,7 +105,7 @@ class MarkdownParser extends MarkdownExtra implements MarkdownParserInterface $this->no_entities = true; } if (true === $this->features['no_html']) { - $this->no_html = true; + $this->no_markup = true; } }