| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php # -*- coding: utf-8 -*- |
||
| 23 | 9 | public function render(array $content): string |
|
| 24 | 9 | { |
|
| 25 | 9 | $headingLevel = \strlen($content[1]); |
|
| 26 | 9 | $header = trim($content[2]); |
|
| 27 | // Build anker without space, numbers. |
||
| 28 | 9 | $anker = preg_replace('#[^a-z?!]#', '', strtolower($header)); |
|
| 29 | |||
| 30 | 9 | return sprintf('<h%d id="%s">%s</h%d>', $headingLevel, $anker, $header, $headingLevel); |
|
| 31 | } |
||
| 33 |