We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae8946d commit ffde77aCopy full SHA for ffde77a
README.md
@@ -29,5 +29,5 @@ Demotes all headings in `$html` by `$numberOfLevels` levels.
29
### min(string $html, int $minLevel)
30
Promotes/demotes all headings in `$html` so that the lowest heading level equals `$minLevel`.
31
```php
32
-\Vikpe\HtmlHeadingNormalizer::min('<h4>Foo</h4>', 1); // '<h1>Foo</h1>'
+\Vikpe\HtmlHeadingNormalizer::min('<h4>Foo</h4><h5>Bar</h5>', 1); // '<h1>Foo</h1><h2>Bar</h2>'
33
```
0 commit comments