hubzilla issue #777

This commit is contained in:
zotlabs 2017-05-14 20:51:15 -07:00 committed by Mario Vavti
parent da682717ab
commit 6ff16e2651

View file

@ -383,7 +383,7 @@ function bb_definitionList($match) {
$eatLeadingSpaces = '(?: |[ \t])*'; // prevent spaces infront of [*= from adding another line to the previous element
$listElements = preg_replace('/^(\n|<br \/>)/', '', $match[2]); // ltrim the first newline
$listElements = preg_replace(
'/' . $eatLeadingSpaces . '\[\*=([[:print:]]*?)(?<!\\\)\]/ism',
'/' . $eatLeadingSpaces . '\[\*=([\p{Any}]*?)(?<!\\\)\]/uism',
$closeDescriptionTag . '<dt>$1</dt><dd>',
$listElements
);