├── package.json └── readme.md /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugs": "https://github.com/remarkjs/remark-external-links/issues", 3 | "name": "remark-external-links", 4 | "repository": "remarkjs/remark-external-links", 5 | "version": "10.0.0" 6 | } 7 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # remark-external-links 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-external-links` with 6 | [`rehype-external-links`][rehype-external-links]. 7 | 8 | [Git][] is still intact and previous versions can still be used without warnings. 9 | 10 | [git]: https://github.com/remarkjs/remark-external-links/tree/11bfaea 11 | 12 | [rehype-external-links]: https://github.com/rehypejs/rehype-external-links 13 | --------------------------------------------------------------------------------