mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-09 00:22:45 -04:00
Doc: Fix too greedy regex for matching blockquotes
This commit is contained in:
parent
fb07b9aa83
commit
b0e3dd438f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue