
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
markdown-it-wiki-toc
Advanced tools
Markdown-it plugin to add Wiki style Table Of Contents
$ npm install --save markdown-it-wiki-toc
var markdownIt = require('markdown-it');
markdownIt({
html: true,
linkify: true,
typographer: true,
})
.use(require('markdown-it-wiki-toc'), {
// ...options
})
.render(mdText);
<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>
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?>
.
$ npm run test
FAQs
Markdown-it plugin to add Wiki style Table Of Contents
The npm package markdown-it-wiki-toc receives a total of 14 weekly downloads. As such, markdown-it-wiki-toc popularity was classified as not popular.
We found that markdown-it-wiki-toc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.