Skip to content

makinacorpus/php-header-fixer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Header fixer

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)