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

Diaspora: Remove asterisk-meddling regular expression
Este commit está contenido en:
Tobias Diekershoff 2019-02-05 07:49:54 +01:00 cometido por GitHub
commit 2ed66cb03b
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 2 ficheros con 1 adiciones y 4 borrados

Ver fichero

@ -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[] = [

Ver fichero

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