|
1 | 1 | <p align="center">
|
2 | 2 | <a href="https://www.blocknotejs.org">
|
3 |
| - <img alt="TypeCell" src="https://github.com/TypeCellOS/BlockNote/raw/main/packages/website/docs/public/img/logos/banner.svg?raw=true" width="300" /> |
| 3 | + <img alt="TypeCell" src="https://github.com/TypeCellOS/BlockNote/raw/main/docs/public/img/logos/banner.svg?raw=true" width="300" /> |
4 | 4 | </a>
|
5 | 5 | </p>
|
6 | 6 |
|
7 | 7 | <p align="center">
|
8 | 8 | Welcome to BlockNote! The open source Block-Based
|
9 |
| -rich text editor. Easily add a modern text editing experience to your app. |
| 9 | +React rich text editor. Easily add a modern text editing experience to your app. |
10 | 10 | </p>
|
11 | 11 |
|
12 | 12 | <p align="center">
|
13 |
| -<a href="https://discord.gg/Qc2QTTH5dF"><img alt="Discord" src="https://img.shields.io/badge/Chat on discord%20-%237289DA.svg?&style=for-the-badge&logo=discord&logoColor=white"/></a> <a href="https://matrix.to/#/#typecell-space:matrix.org"><img alt="Matrix" src="https://img.shields.io/badge/Chat on matrix%20-%23000.svg?&style=for-the-badge&logo=matrix&logoColor=white"/></a> |
| 13 | +<a href="https://discord.gg/Qc2QTTH5dF"><img alt="Discord" src="https://img.shields.io/badge/Chat on discord%20-%237289DA.svg?&style=for-the-badge&logo=discord&logoColor=white"/></a> |
14 | 14 | </p>
|
15 | 15 |
|
16 | 16 | <p align="center">
|
17 | 17 | <a href="https://www.blocknotejs.org">
|
18 | 18 | Homepage
|
19 | 19 | </a> - <a href="https://www.blocknotejs.org/docs/introduction">
|
20 |
| - Introduction |
21 |
| - </a> - <a href="https://www.blocknotejs.org/docs/quickstart"> |
22 | 20 | Documentation
|
| 21 | + </a> - <a href="https://www.blocknotejs.org/docs/quickstart"> |
| 22 | + Quickstart |
| 23 | + </a>- <a href="https://www.blocknotejs.org/docs/examples"> |
| 24 | + Examples |
23 | 25 | </a>
|
24 | 26 | </p>
|
25 | 27 |
|
26 | 28 | # Live demo
|
27 | 29 |
|
28 |
| -Play with the editor @ [https://blocknote-main.vercel.app/](https://blocknote-main.vercel.app/). |
29 |
| - |
30 |
| -(Source in [examples/editor](/examples/editor)) |
| 30 | +See our homepage @ [https://www.blocknotejs.org](https://www.blocknotejs.org/) or browse the [examples](https://www.blocknotejs.org/examples). |
31 | 31 |
|
32 | 32 | # Example code (React)
|
33 | 33 |
|
34 | 34 | [](https://badge.fury.io/js/%40blocknote%2Freact)
|
35 | 35 |
|
36 | 36 | ```typescript
|
37 |
| -import { BlockNoteView, useBlockNote } from "@blocknote/react"; |
| 37 | +import { BlockNoteView, useCreateBlockNote } from "@blocknote/react"; |
| 38 | +import "@blocknote/core/fonts/inter.css"; |
38 | 39 | import "@blocknote/react/style.css";
|
39 | 40 |
|
40 | 41 | function App() {
|
41 |
| - const editor = useBlockNote({ |
42 |
| - onEditorContentChange: (editor) => { |
43 |
| - // Log the document to console on every update |
44 |
| - console.log(editor.getJSON()); |
45 |
| - }, |
46 |
| - }); |
| 42 | + const editor = useCreateBlockNote(); |
47 | 43 |
|
48 | 44 | return <BlockNoteView editor={editor} />;
|
49 | 45 | }
|
@@ -99,8 +95,8 @@ Directory structure:
|
99 | 95 | blocknote
|
100 | 96 | ├── packages/core - The core of the editor
|
101 | 97 | ├── packages/react - The main library for use in React apps
|
102 |
| -├── examples/editor - Example React app that embeds the editor |
103 |
| -├── examples/vanilla - An advanced example if you don't want to use React or want to build your own UI components |
| 98 | +├── examples - Example apps |
| 99 | +├── playground - App to browse the example apps (https://playground.blocknotejs.org) |
104 | 100 | └── tests - Playwright end to end tests
|
105 | 101 | ```
|
106 | 102 |
|
|
0 commit comments