Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function process(Page $page, string $output, string $format): string |
||
29 | { |
||
30 | if ($format == 'html') { |
||
31 | // https://regex101.com/r/Xl7d5I/3 |
||
32 | $pattern = '(.*)(<!--[[:blank:]]?(excerpt|break)[[:blank:]]?-->)(.*)'; |
||
33 | $replacement = '$1<span id="more"></span>$4'; |
||
34 | $excerpt = preg_replace('/' . $pattern . '/is', $replacement, $output, 1); |
||
35 | $output = $excerpt ?? $output; |
||
36 | } |
||
37 | |||
38 | return $output; |
||
39 | } |
||
41 |