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