Normalize line endings instead of adding <br> before Markdown()

This commit is contained in:
Hypolite Petovan 2017-03-12 03:55:22 -04:00
parent 3fa4605ace
commit 2310bf994a
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@ function diaspora2bb($s) {
$s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
// Handles single newlines
$s = str_replace("\r", '<br>', $s);
$s = str_replace("\r\n", "\n", $s);
$s = str_replace("\n", " \n", $s);
$s = str_replace("\r", " \n", $s);
// Replace lonely stars in lines not starting with it with literal stars
$s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);