2.4.0 • Published 8 years ago

@tschaub/markdown-it-anchor v2.4.0

Weekly downloads
-
License
Unlicense
Repository
github
Last release
8 years ago

markdown-it-anchor npm version

Header anchors for markdown-it.

Usage

const md = require('markdown-it')
  .use(require('markdown-it-anchor'), opts)

See a demo as JSFiddle.

The opts object can contain:

NameDescriptionDefault
levelMinimum level to apply anchors on.1
slugifyA custom slugification function.string.js' slugify
permalinkWhether to add permalinks next to titles.false
renderPermalinkA custom permalink rendering function.See index.es6.js
permalinkClassThe class of the permalink anchor.header-anchor
permalinkSymbolThe symbol in the permalink anchor.
permalinkBeforePlace the permalink before the title.false
callbackCalled with token and info after rendering.undefined

The renderPermalink function takes the slug, an options object with the above options, and then all the usual markdown-it rendering arguments.

All headers above level will then have an id attribute with a slug of their content, and if permalink is true, a symbol linking to the header itself.

You may want to use the link symbol as permalinkSymbol, or a symbol from your favorite web font.

The callback option is a function that will be called at the end of rendering with the token and an info object. The info object has title and slug properties with the token content and the slug used for the identifier.

2.4.0

8 years ago