├── package.json └── readme.md /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugs": "https://github.com/remarkjs/remark-autolink-headings/issues", 3 | "name": "remark-autolink-headings", 4 | "repository": "remarkjs/remark-autolink-headings", 5 | "version": "8.0.0" 6 | } 7 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # remark-autolink-headings 2 | 3 | Deprecated: this package is no longer maintained. 4 | Please use `remark-rehype` to move from remark (markdown) to rehype (HTML) 5 | and then replace `remark-autolink-headings` with 6 | [`rehype-autolink-headings`][rehype-autolink-headings]. 7 | 8 | [Git][] is still intact and previous versions can still be used without warnings. 9 | 10 | [git]: https://github.com/remarkjs/remark-autolink-headings/tree/c7dfc09 11 | 12 | [rehype-autolink-headings]: https://github.com/rehypejs/rehype-autolink-headings 13 | --------------------------------------------------------------------------------