Remove asterisk provision altogether in Markdown::toBBCode

This commit is contained in:
Hypolite Petovan 2019-02-04 21:49:55 -05:00
parent 3c62a7206e
commit a96e9f248e
1 changed files with 0 additions and 3 deletions

View File

@ -83,9 +83,6 @@ class Markdown extends BaseObject
{
$s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
// Replace lonely stars in lines not starting with it with literal stars
$s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
// The parser cannot handle paragraphs correctly
$s = str_replace(['</p>', '<p>', '<p dir="ltr">'], ['<br>', '<br>', '<br>'], $s);