Merge pull request #76 from craue/patch-3

fix the `no_html` option
This commit is contained in:
Andrew Kovalyov 2015-08-20 14:00:10 +03:00
commit 3454372665

View file

@ -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;
}
}