Doc: Fix too greedy regex for matching blockquotes

This commit is contained in:
Eric Lippmann 2016-04-12 11:11:41 +02:00
parent fb07b9aa83
commit b0e3dd438f
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ class DocSectionRenderer extends DocRenderer
$html $html
); );
$html = preg_replace_callback( $html = preg_replace_callback(
'#<blockquote>.+</blockquote>#ms', '#<blockquote>.+?</blockquote>#ms',
array($this, 'markupNotes'), array($this, 'markupNotes'),
$html $html
); );