Socket
Book a DemoInstallSign in
Socket

markdown-it-wiki-toc

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it-wiki-toc

Markdown-it plugin to add Wiki style Table Of Contents

1.0.4
latest
Source
npmnpm
Version published
Weekly downloads
16
60%
Maintainers
1
Weekly downloads
 
Created
Source

markdown-it-wiki-toc

Version

Markdown-it plugin to add Wiki style Table Of Contents

Installation

$ npm install --save markdown-it-wiki-toc

Usage

var markdownIt = require('markdown-it');

markdownIt({
    html: true,
    linkify: true,
    typographer: true,
})
    .use(require('markdown-it-wiki-toc'), {
        // ...options
    })
    .render(mdText);

Results

<p>
    <div id="toc" class="toc">
        <h3>Table of Contents</h3>
        <ul class="toc-level">
            <li><a href="#h-1">1.</a> Heading 1</li>
            <ul class="toc-level">
                <li><a href="#h-1.1">1.1.</a> Heading 2</li>
                <ul class="toc-level">
                    <li><a href="#h-1.1.1">1.1.1.</a> Heading 3</li>
                </ul>
                <li><a href="#h-1.2">1.2.</a> Heading 2</li>
                <ul class="toc-level">
                    <li><a href="#h-1.2.1">1.2.1.</a> Heading 3</li>
                </ul>
            </ul>
        </ul>
    </div>
</p>
<h1><a href="#h-1" id="h-1">1.</a> Heading 1</h1>
<h2><a href="#h-1.1" id="h-1.1">1.1.</a> Heading 2</h2>
<h3><a href="#h-1.1.1" id="h-1.1.1">1.1.1.</a> Heading 3</h3>
<h2><a href="#h-1.2" id="h-1.2">1.2.</a> Heading 2</h2>
<h3><a href="#h-1.2.1" id="h-1.2.1">1.2.1.</a> Heading 3</h3>

Options

tocRegexp (RegExp)

default: /@\[toc\]/im

Regular expression to detect TOC in source.

tocTitle (string)

default: 'Table of Contents'

Title of TOC.

tocId (string)

default: 'toc'

HTML ID attribute of TOC wrapper.

tocWrapperClass (string)

default: 'toc'

HTML Class attribute of TOC wrapper.

tocLevelWrapperClass (string)

default: 'toc-level'

HTML Class attribute of level wrapper of TOC.

anchorIdPrefix (string)

default: 'h-'

Prefix for each ID attribute of headings.

default: false

Value of whether the link in the anchor of the heading points to TOC.

If the value is true, result is <h?><a href="#toc">...</a>...</h?>.

Test

$ npm run test

LICENSE

Keywords

markdown

FAQs

Package last updated on 17 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.