mdast-normalize-headings

mdast utility to make sure there is no more than a single top-level heading in the document

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
mdast-normalize-headings
604.0.09 months ago9 years agoMinified + gzip package size for mdast-normalize-headings in KB

Readme

mdast-normalize-headings
!Buildbuild-badgebuild !Coveragecoverage-badgecoverage !Downloadsdownloads-badgedownloads !Sizesize-badgesize !Sponsorssponsors-badgecollective !Backersbackers-badgecollective !Chatchat-badgechat
mdast utility to normalize heading depths.

Contents

*   [`normalizeHeadings(tree)`](#normalizeheadingstree)

What is this?

This package is a utility that normalizes the heading structure of documents. It makes sure one top-level heading is used by adjusting headings depths accordingly.

When should I use this?

This utility can be useful when working with tools that assume that there is a single top-level heading that contains some meta-information (usually a title) about the document.
A plugin, remark-normalize-headingsremark-normalize-headings, exists that does the same but for remark.

Install

This package is ESM onlyesm. In Node.js (version 16+), install with npm:
npm install mdast-util-normalize-headings

In Deno with esm.shesmsh:
import {normalizeHeadings} from 'https://esm.sh/mdast-util-normalize-headings@4'

In browsers with esm.shesmsh:
<script type="module">
  import {normalizeHeadings} from 'https://esm.sh/mdast-util-normalize-headings@4?bundle'
</script>

Use

import {normalizeHeadings} from 'mdast-normalize-headings'
import {u} from 'unist-builder'

const tree = u('root', [
  u('heading', {depth: 1}, [u('text', 'title')]),
  u('heading', {depth: 2}, [u('text', 'description')]),
  u('heading', {depth: 1}, [u('text', 'example')])
])

normalizeHeadings(tree)

console.log(tree)

Yields:
{
  type: 'root',
  children: [
    {type: 'heading', depth: 1, children: [Array]},
    {type: 'heading', depth: 3, children: [Array]},
    {type: 'heading', depth: 2, children: [Array]}
  ]
}

API

This package exports the identifier normalizeHeadingsapi-normalizeheadings. There is no default export.

normalizeHeadings(tree)

Make sure that there is only one top-level heading in the document by adjusting headings depths accordingly.
Parameters
— tree to change
Returns
Nothing (undefined).

Types

This package is fully typed with TypeScript. It exports no additional types.

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, mdast-normalize-headings@^4, compatible with Node.js 16.

Security

Use of mdast-normalize-headings does not involve hast so there are no openings for cross-site scripting (XSS)xss attacks.

Related

— remark plugin

Contribute

See contributing.mdcontributing in syntax-tree/.githubhealth for ways to get started. See support.mdsupport for ways to get help.
This project has a code of conductcoc. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MITlicense © Eugene Sharygin