rehype plugin to add id attributes to headings
rehype-slug
rehype plugin to add id
s to headings.
Install
npm:
npm install rehype-slug
Use
Say we have the following file, fragment.html
:
<h1>Lorem ipsum 😪</h1> <h2>dolor—sit—amet</h2> <h3>consectetur & adipisicing</h3> <h4>elit</h4> <h5>elit</h5>
And our script, example.js
, looks as follows:
var fs = require('fs') var rehype = require('rehype') var slug = require('rehype-slug') rehype() .data('settings', {fragment: true}) .use(slug) .process(fs.readFileSync('fragment.html'), function(err, file) { if (err) throw err console.log(String(file)) })
Now, running node example
yields:
<h1 id="lorem-ipsum-">Lorem ipsum 😪</h1> <h2 id="dolorsitamet">dolor—sit—amet</h2> <h3 id="consectetur--adipisicing">consectetur & adipisicing</h3> <h4 id="elit">elit</h4> <h5 id="elit-1">elit</h5>
API
rehype().use(slug)
Add id
properties to h1-h6 headings that don’t already have one.
Uses github-slugger to create GitHub style id
s.
Related
remark-slug
— Add slugs to headings in markdown
Contribute
See contributing.md
in rehypejs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a Code of Conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
License
Repository
rehypejs/rehype-slug