mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-22 13:24:24 +02:00
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
|
||||||
);
|
);
|
||||||
$html = preg_replace_callback(
|
$html = preg_replace_callback(
|
||||||
'#<blockquote>.+</blockquote>#ms',
|
'#<blockquote>.+?</blockquote>#ms',
|
||||||
array($this, 'markupNotes'),
|
array($this, 'markupNotes'),
|
||||||
$html
|
$html
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user