makinacorpus/php-header-fixer

Fixes headers in HTML text

1.1.1 2024-01-15 16:18 UTC

This package is auto-updated.

Last update: 2024-04-15 16:48:08 UTC


README

Usage

Fixes header semantic hierarchy in HTML text.

$fixedHtmlText = \MakinaCorpus\HeaderFixer\Header::fix($originalHtmlText, 0, true);

And that is pretty much it.

Options are:
  • 0 is the decal, if you, for example, want the text to start with h2 instead of h1, then set 1 here, for h3 set 2, etc...
  • true is the relocate orphans options, if set to true, when a title is the single one at his own level, with no siblings, it will be put at a higher level side by side its parent.

TODOLIST

  • implement a generic twig filter
  • implement a drupal 7 module (another repo, including jolitypo)
  • implement a drupal 8 module (another repo, including jolitypo)