Enable hard_wrap for Markdown parser to match Diaspora parsing
This commit is contained in:
parent
c9214c2051
commit
839a457ab2
1 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,9 @@ function Markdown($text) {
|
||||||
$stamp1 = microtime(true);
|
$stamp1 = microtime(true);
|
||||||
|
|
||||||
# Read file and pass content through the Markdown parser
|
# Read file and pass content through the Markdown parser
|
||||||
$html = MarkdownExtra::defaultTransform($text);
|
$MarkdownParser = new MarkdownExtra();
|
||||||
|
$MarkdownParser->hard_wrap = true;
|
||||||
|
$html = $MarkdownParser->transform($text);
|
||||||
|
|
||||||
$a->save_timestamp($stamp1, "parser");
|
$a->save_timestamp($stamp1, "parser");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue