https://github.com/gosvoh/editorjs-antd-renderer
https://github.com/gosvoh/editorjs-antd-renderer
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gosvoh/editorjs-antd-renderer
- Owner: gosvoh
- Created: 2024-10-23T15:46:45.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-27T10:49:33.000Z (11 months ago)
- Last Synced: 2024-11-27T11:29:40.681Z (11 months ago)
- Language: TypeScript
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-editorjs - editorjs-antd-renderer - design/ant-design) components (Libraries / JavaScript)
README
# Editor.js renderer
Render [Editor.js](https://editorjs.io) data to React components.
## Supported Plugins
- [x] [Paragraph (default)](https://github.com/editor-js/paragraph)
- [x] [List](https://github.com/editor-js/list)
- [x] [Code](https://github.com/editor-js/code)
- [x] [Image](https://github.com/editor-js/image)
- [x] [Header](https://github.com/editor-js/header)
- [x] [Marker](https://github.com/editor-js/marker)
- [x] [CheckList](https://github.com/editor-js/checklist)
- [x] [InlineCode](https://github.com/editor-js/inline-code)
- [x] [SimpleImage](https://github.com/editor-js/simple-image)
- [x] [Embed](https://github.com/editor-js/embed)
- [x] [Quote](https://github.com/editor-js/quote)
- [x] [Attaches](https://github.com/editor-js/attaches)
- [x] [Math](https://github.com/n0str/editorjs-math)
## Getting Started
### Install via npm, yarn or bun
```bash
npm install --save editorjs-antd-renderer antd @editorjs/editorjs @editorjs/paragraph ...other plugins
```
### Basic Usage
```tsx
import EditorJSRenderer from "editorjs-antd-renderer";
;
```