0.0.3 • Published 7 months ago

html2toc v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

html2toc

Part of @plumbiu/md.

Feature

  • Tiny
  • Fast
  • Well tested

Usage

/*
  function html2Toc(html: string, options?: {
    depth: number
  }): {
    level: number
    content: string
    hash: string
  }[]
*/

import { md2html } from '@plumbiu/md'

await md2toc('<h1 id="hello-world">hello world</h1>', {
  // depth mean the toc depth
  depth: 3 // 3 by default
})

/*
  [
    { level: 1, content: 'hello world', hash: 'hello-world' }
  ]
*/
0.0.3

7 months ago

0.0.1

7 months ago