1.1.5 • Published 4 years ago

markdown-it-toc-asd v1.1.5

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

markdown-it-toc-asd

markdown-it 用于向markdown文档添加目录的插件

基于:markdown-it-toc-gb

用法Usage

启用插件Enable plugin

var md = require('markdown-it')({
  html: true,
  linkify: true,
  typography: true
}).use(require('markdown-it-toc-asd')); // <-- this use(package_name) is required

例子Example

[toc]

Adding this tag with add anchors to each <h[n]> tag on your document, and will add a <ul> of hyperlinks pointing to these places on the page.

The end results looks like:

<p>
     <ul>
	<li><a href="#asd_title_...">h1 Heading</a></li>
	...
	... 
     </ul> 
</p>
...
...
<h1><a id="asd_title_..." href="#asd_title_..."></a>h1 Heading</h1>

还可以通过css样式为标题添加头部触角:

a[id*=asd_title_]::before{
		content:'¶';
		text-decoration:none;
		color:#409EFF;
	}

效果:

实例图片

Testing

To run the tests use:

make test
1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago