remark-autolink-headings
Advanced tools
Comparing version 7.0.0 to 7.0.1
{ | ||
"name": "remark-autolink-headings", | ||
"version": "7.0.0", | ||
"description": "remark plugin to automatically add links to headings", | ||
"version": "7.0.1", | ||
"description": "Legacy remark plugin to automatically add links to headings — please use `rehype-autolink-headings` instead", | ||
"license": "MIT", | ||
"keywords": [ | ||
"unified", | ||
"remark", | ||
"remark-plugin", | ||
"plugin", | ||
"mdast", | ||
"markdown", | ||
"headings", | ||
"link", | ||
"automatic" | ||
], | ||
"keywords": [], | ||
"repository": "remarkjs/remark-autolink-headings", | ||
@@ -44,3 +34,3 @@ "bugs": "https://github.com/remarkjs/remark-autolink-headings/issues", | ||
"devDependencies": { | ||
"@types/extend": "^3.0.1", | ||
"@types/extend": "^3.0.0", | ||
"@types/tape": "^4.0.0", | ||
@@ -53,3 +43,3 @@ "c8": "^7.0.0", | ||
"remark-html": "^14.0.0", | ||
"remark-preset-wooorm": "^8.0.0", | ||
"remark-preset-wooorm": "^9.0.0", | ||
"remark-slug": "^7.0.0", | ||
@@ -60,3 +50,3 @@ "rimraf": "^3.0.0", | ||
"typescript": "^4.0.0", | ||
"xo": "^0.43.0" | ||
"xo": "^0.44.0" | ||
}, | ||
@@ -63,0 +53,0 @@ "scripts": { |
240
readme.md
# remark-autolink-headings | ||
[![Build][build-badge]][build] | ||
[![Coverage][coverage-badge]][coverage] | ||
[![Downloads][downloads-badge]][downloads] | ||
[![Size][size-badge]][size] | ||
[![Sponsors][sponsors-badge]][collective] | ||
[![Backers][backers-badge]][collective] | ||
[![Chat][chat-badge]][chat] | ||
**Stability: Legacy**. | ||
This package is no longer recommended for use. | ||
It’s still covered by semantic-versioning guarantees and not yet deprecated, | ||
but use of this package should be avoided. | ||
Please use `remark-rehype` to move from remark (markdown) to rehype (HTML) | ||
and then replace `remark-autolink-headings` with | ||
[`rehype-autolink-headings`][rehype-autolink-headings]. | ||
[**remark**][remark] plugin to automatically add links to headings. | ||
Legacy [documentation for this package](https://github.com/remarkjs/remark-autolink-headings/tree/91254a60bfe03163cb49f08ec20ca5d34f677b7c) | ||
is still available in Git. | ||
> This package integrates with [`remark-html`][remark-html] (or alternatives). | ||
> It is better to work with [**rehype**][rehype], which is specifically made | ||
> for HTML, and to use [`rehype-autolink-headings`][rehype-autolink-headings] | ||
> instead of this package. | ||
<!----> | ||
> This package works with headings that have IDs. | ||
> One way to add IDs to headings is by using [`remark-slug`][remark-slug] before | ||
> this plugin. | ||
## Note! | ||
This plugin is ready for the new parser in remark | ||
([`remarkjs/remark#536`](https://github.com/remarkjs/remark/pull/536)). | ||
No change is needed: it works exactly the same now as it did before! | ||
## Install | ||
This package is [ESM only](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c): | ||
Node 12+ is needed to use it and it must be `import`ed instead of `require`d. | ||
[npm][]: | ||
```sh | ||
npm install remark-autolink-headings | ||
``` | ||
## Use | ||
Say we have the following markdown file, `example.md`: | ||
```markdown | ||
# Lorem ipsum 😪 | ||
## dolor—sit—amet | ||
### consectetur & adipisicing | ||
#### elit | ||
##### elit | ||
``` | ||
And our module, `example.js`, looks as follows: | ||
```js | ||
import fs from 'node:fs' | ||
import {unified} from 'unified' | ||
import remarkParse from 'remark-parse' | ||
import remarkSlug from 'remark-slug' | ||
import remarkAutolinkHeadings from 'remark-autolink-headings' | ||
import remarkHtml from 'remark-html' | ||
const doc = unified() | ||
.use(remarkParse) | ||
.use(remarkSlug) | ||
// Note that this module must be included after `remark-slug`. | ||
.use(remarkAutolinkHeadings) | ||
.use(remarkHtml) | ||
.processSync(fs.readFileSync('example.md')) | ||
.toString() | ||
console.log(doc) | ||
``` | ||
Now, running `node example` yields: | ||
```html | ||
<h1 id="lorem-ipsum-"><a href="#lorem-ipsum-" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>Lorem ipsum 😪</h1> | ||
<h2 id="dolorsitamet"><a href="#dolorsitamet" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>dolor—sit—amet</h2> | ||
<h3 id="consectetur--adipisicing"><a href="#consectetur--adipisicing" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>consectetur & adipisicing</h3> | ||
<h4 id="elit"><a href="#elit" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>elit</h4> | ||
<h5 id="elit-1"><a href="#elit-1" aria-hidden="true" tabindex="-1"><span class="icon icon-link"></span></a>elit</h5> | ||
``` | ||
## API | ||
This package exports no identifiers. | ||
The default export is `remarkAutolinkHeadings`. | ||
### `unified().use(remarkAutolinkHeadings[, options])` | ||
Automatically add links to headings. | ||
##### `options` | ||
###### `options.behavior` | ||
How to create links (`string`, default: `'prepend'`). | ||
* `'prepend'` — inject link before the heading text | ||
* `'append'` — inject link after the heading text | ||
* `'wrap'` — wrap the whole heading text with the link | ||
* `'before'` — insert link before the heading | ||
* `'after'` — insert link after the heading | ||
Supplying `wrap` will ignore any value defined by the `content` option. | ||
Supplying `prepend`, `append`, or `wrap` will ignore the `group` option. | ||
###### `options.linkProperties` | ||
Extra properties to set on the link (`Object?`). | ||
Defaults to `{ariaHidden: 'true', tabIndex: -1}` when in `'prepend'` or `'append'` | ||
mode. | ||
###### `options.content` | ||
[**hast**][hast] nodes to insert in the link (`Function|Node|Children`). | ||
By default, the following is used: | ||
```js | ||
{ | ||
type: 'element', | ||
tagName: 'span', | ||
properties: {className: ['icon', 'icon-link']} | ||
} | ||
``` | ||
If `behavior` is `wrap`, then `content` is ignored. | ||
If `content` is a function, it’s called with the current heading (`Node`) and | ||
should return one or more nodes: | ||
```js | ||
const toString = require('mdast-util-to-string') | ||
const h = require('hastscript') | ||
// … | ||
function content(node) { | ||
return [ | ||
h('span.visually-hidden', 'Read the “', toString(node), '” section'), | ||
h('span.icon.icon-link', {ariaHidden: 'true'}) | ||
] | ||
} | ||
``` | ||
###### `options.group` | ||
[**hast**][hast] node to wrap the heading and link with (`Function|Node`), if | ||
`behavior` is `before` or `after`. | ||
There is no default. | ||
If `behavior` is `prepend`, `append`, or `wrap`, then `group` is ignored. | ||
If `group` is a function, it’s called with the current heading (`Node`) and | ||
should return a hast node. | ||
```js | ||
const h = require('hastscript') | ||
// … | ||
function group(node) { | ||
return h('div.heading-' + node.depth + '-group') | ||
} | ||
``` | ||
## Security | ||
Use of `remark-autolink-headings` can open you up to a | ||
[cross-site scripting (XSS)][xss] attack if you pass user provided content in | ||
`linkProperties` or `content`. | ||
Always be wary of user input and use [`rehype-sanitize`][sanitize]. | ||
## Contribute | ||
See [`contributing.md`][contributing] in [`remarkjs/.github`][health] for ways | ||
to get started. | ||
See [`support.md`][support] for ways to get help. | ||
This project has a [code of conduct][coc]. | ||
By interacting with this repository, organization, or community you agree to | ||
abide by its terms. | ||
## License | ||
@@ -192,38 +20,2 @@ | ||
[build-badge]: https://github.com/remarkjs/remark-autolink-headings/workflows/main/badge.svg | ||
[build]: https://github.com/remarkjs/remark-autolink-headings/actions | ||
[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark-autolink-headings.svg | ||
[coverage]: https://codecov.io/github/remarkjs/remark-autolink-headings | ||
[downloads-badge]: https://img.shields.io/npm/dm/remark-autolink-headings.svg | ||
[downloads]: https://www.npmjs.com/package/remark-autolink-headings | ||
[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-autolink-headings.svg | ||
[size]: https://bundlephobia.com/result?p=remark-autolink-headings | ||
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg | ||
[backers-badge]: https://opencollective.com/unified/backers/badge.svg | ||
[collective]: https://opencollective.com/unified | ||
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg | ||
[chat]: https://github.com/remarkjs/remark/discussions | ||
[npm]: https://docs.npmjs.com/cli/install | ||
[health]: https://github.com/remarkjs/.github | ||
[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md | ||
[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md | ||
[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md | ||
[license]: license | ||
@@ -233,16 +25,2 @@ | ||
[remark]: https://github.com/remarkjs/remark | ||
[remark-slug]: https://github.com/remarkjs/remark-slug | ||
[remark-html]: https://github.com/remarkjs/remark-html | ||
[rehype]: https://github.com/rehypejs/rehype | ||
[rehype-autolink-headings]: https://github.com/rehypejs/rehype-autolink-headings | ||
[hast]: https://github.com/syntax-tree/hast | ||
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting | ||
[sanitize]: https://github.com/rehypejs/rehype-sanitize |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0
14497
25