rehype-headings-normalize

0.0.2 • Public • Published

Rehype Headings Normalize

rehype-headings-normalize is a Rehype plugin designed to automatically adjust and normalize the hierarchy of HTML headings in your documents. Crafted with human editors in mind, it corrects common mistakes such as misused or incorrectly leveled headings, ensuring your content is both semantically correct and SEO-friendly. This plugin is perfect for making all headlines hierarchy well-structured and Google happy, without the need for manual adjustments.

Key Features

  • Heading Level Normalization: Automatically adjusts headings to maintain a logical and SEO-friendly structure.
  • Minimum Level Configuration: Ensures all headings meet a specified minimum level to maintain consistency across your content.
  • Hierarchy Correction: Adjusts child headings to ensure no heading is more than one level deeper than its parent, preventing overly deep nesting and promoting readability.
  • SEO Improvement: By correcting heading structures, it improves the SEO of your documents, making them more favorable to search engines like Google.

Getting Started

Installation

To start using rehype-headings-normalize, first install the package using npm:

npm install rehype-headings-normalize

Configuration

Integrate rehype-headings-normalize into your Rehype setup in your project's configuration file. Here's an example of how to add it to your processing pipeline:

import rehype from 'rehype';
import rehypeHeadingsNormalize from 'rehype-headings-normalize';

rehype()
  .use(rehypeHeadingsNormalize, { minimumLevel: 2 }) // Customize the minimumLevel as needed
  .process(yourHtmlContent)
  .then(file => {
    console.log(String(file));
  });

Options:

  • minimumLevel (optional): Defines the minimum heading level (1 through 6) to ensure all headings are at least of this level. Defaults to 1 if not specified.

Compatibility

This plugin is designed to work seamlessly with the Rehype ecosystem, ensuring broad compatibility with HTML content transformation workflows. It is especially useful for projects and content management systems where HTML is generated or modified dynamically.

Contribution

We welcome contributions from the community to make rehype-headings-normalize even better. Whether it's through bug reports, feature requests, or pull requests, your input is valuable in improving this tool.

License

rehype-headings-normalize is open-sourced software licensed under the MIT License. Feel free to use, modify, and distribute it as part of your projects.

Readme

Keywords

none

Package Sidebar

Install

npm i rehype-headings-normalize

Weekly Downloads

10

Version

0.0.2

License

MIT

Unpacked Size

5.97 kB

Total Files

4

Last publish

Collaborators

  • axe312