remark-toc

WebJar for remark-toc

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

remark-toc
Последняя версия

Последняя версия

5.1.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

remark-toc
WebJar for remark-toc
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/remarkjs/remark-toc

Скачать remark-toc

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/remark-toc/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>remark-toc</artifactId>
    <version>5.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/remark-toc/
implementation 'org.webjars.npm:remark-toc:5.1.1'
// https://jarcasting.com/artifacts/org.webjars.npm/remark-toc/
implementation ("org.webjars.npm:remark-toc:5.1.1")
'org.webjars.npm:remark-toc:jar:5.1.1'
<dependency org="org.webjars.npm" name="remark-toc" rev="5.1.1">
  <artifact name="remark-toc" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='remark-toc', version='5.1.1')
)
libraryDependencies += "org.webjars.npm" % "remark-toc" % "5.1.1"
[org.webjars.npm/remark-toc "5.1.1"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.webjars.npm : remark-slug jar [5.0.0,6)
org.webjars.npm : mdast-util-toc jar [3.0.0,4)

Модули Проекта

Данный проект не имеет модулей.

remark-toc

Build Coverage Downloads Size Sponsors Backers Chat

remark plugin to generate a table of contents.

Install

npm:

npm install remark-toc

Use

Say we have the following file, example.md:

# Alpha

## Table of Contents

## Bravo

### Charlie

## Delta

And our script, example.js, looks as follows:

var vfile = require('to-vfile')
var remark = require('remark')
var toc = require('remark-toc')

remark()
  .use(toc)
  .process(vfile.readSync('example.md'), function(err, file) {
    if (err) throw err
    console.log(String(file))
  })

Now, running node example yields:

# Alpha

## Table of Contents

-   [Bravo](#bravo)

    -   [Charlie](#charlie)

-   [Delta](#delta)

## Bravo

### Charlie

## Delta

API

remark().use(toc[, options])

Generate a table of contents.

  • Looks for the first heading containing 'Table of Contents', 'toc', or 'table-of-contents' (case insensitive, supports alt/title attributes for links and images too)
  • Removes all following contents until an equal or higher heading is found
  • Inserts a list representation of the hierarchy of following headings
  • Links from the table of contents to following headings, using the same slugs as GitHub

Note: if you’re later compiling to HTML, you still need to add anchors to headings. Previously that was done by this plugin as well, but now you must .use(slug) to include remark-slug explicitly.

options
options.heading

string?, default: 'toc|table[ -]of[ -]contents?' — Heading to look for, wrapped in new RegExp('^(' + value + ')$', 'i').

options.maxDepth

number?, default: 6 — Maximum heading depth to include in the table of contents, This is inclusive, thus, when set to 3, level three headings, are included (those with three hashes, ###).

options.tight

boolean?, default: false — Whether to compile list-items tightly.

options.skip

string? — Headings to skip, wrapped in new RegExp('^(' + value + ')$', 'i'). Any heading matching this expression will not be present in the table of contents.

Security

Use of remark-toc involves user content and changes the tree, so it can open you up for a cross-site scripting (XSS) attack.

Existing nodes are copied into the table of contents. The following example shows how an existing script is copied into the table of contents.

The following Markdown:

# Table of Contents

## Bravo<script>alert(1)</script>

## Charlie

Yields:

# Table of Contents

-   [Bravo<script>alert(1)</script>](#bravoscriptalert1script)
-   [Charlie](#charlie)

## Bravo<script>alert(1)</script>

## Charlie

This may become a problem if the Markdown is later transformed to rehype (hast) or opened in an unsafe Markdown viewer.

Related

Contribute

See contributing.md in remarkjs/.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, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer

org.webjars.npm

remark

markdown processor powered by plugins part of the @unifiedjs collective

Версии библиотеки

Версия
5.1.1