GithubHelp home page GithubHelp logo

gerhobbelt / markdown-it-wiki-toc Goto Github PK

View Code? Open in Web Editor NEW

This project forked from peoplefund-tech/markdown-it-wiki-toc

0.0 0.0 0.0 7 KB

Markdown-it plugin to add Wiki style Table Of Contents

License: MIT License

JavaScript 100.00%

markdown-it-wiki-toc's Introduction

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.

reverseLink (boolean)

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

markdown-it-wiki-toc's People

Contributors

n0rr7882 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.