Merge pull-request #738

This commit is contained in:
Frederic Guillot
2015-03-30 20:47:42 -04:00
3 changed files with 6 additions and 1 deletions

View File

@@ -502,7 +502,7 @@ class Helper
public function markdown($text, array $link = array())
{
$parser = new Markdown($link, $this);
$parser->setMarkupEscaped(true);
$parser->setMarkupEscaped(MARKDOWN_ESCAPED);
return $parser->text($text);
}