Switched deprecated Parsedown parse method to text

This commit is contained in:
Djamil Legato
2014-10-09 12:34:35 -07:00
parent 539b7931e6
commit a69e5fa115

View File

@@ -1619,7 +1619,7 @@ class Page
} else {
$parsedown = new Markdown($this);
}
$content = $parsedown->parse($content);
$content = $parsedown->text($content);
return $content;
}