Doc: Fix too greedy regex for matching blockquotes
This commit is contained in:
parent
fb07b9aa83
commit
b0e3dd438f
|
@ -287,7 +287,7 @@ class DocSectionRenderer extends DocRenderer
|
|||
$html
|
||||
);
|
||||
$html = preg_replace_callback(
|
||||
'#<blockquote>.+</blockquote>#ms',
|
||||
'#<blockquote>.+?</blockquote>#ms',
|
||||
array($this, 'markupNotes'),
|
||||
$html
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue