Merge pull request #6590 from MrPetovan/bug/6585-diaspora-ignore-escaped-asterisks

Diaspora: Remove asterisk-meddling regular expression
This commit is contained in:
Tobias Diekershoff 2019-02-05 07:49:54 +01:00 zatwierdzone przez GitHub
commit 2ed66cb03b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -98,7 +98,7 @@ function babel_content()
$html = Text\Markdown::convert($markdown);
$results[] = [
'title' => L10n::t('Markdown::convert (raw HTML)'),
'content' => htmlspecialchars($html)
'content' => visible_whitespace(htmlspecialchars($html))
];
$results[] = [

Wyświetl plik

@ -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);