remove outdated screencasts (#4169)

This commit is contained in:
Patrick Baber 2023-06-28 18:46:43 -07:00 committed by GitHub
parent 238a3f0fde
commit 781cdfa54e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 10 deletions

View File

@ -7,11 +7,6 @@ tableOfContents: true
## Introduction
Real-time collaboration, syncing between different devices and working offline used to be hard. We provide everything you need to keep everything in sync with the power of [Y.js](https://github.com/yjs/yjs). The following guide helps you get started with collaborative editing in Tiptap. Dont worry, a production-grade setup doesnt require much code.
## The video course
We are working on a video course which teaches everything you need to know about collaborative text editing with Tiptap. The first video is available for sponsors here:
https://tiptap.dev/screencasts/collaborative-editing/make-tiptap-collaborative
## Configure the editor
The underyling schema Tiptap uses is an excellent foundation to sync documents. With the [`Collaboration`](/api/extensions/collaboration) extension you can tell Tiptap to track changes to the document with [Y.js](https://github.com/yjs/yjs).

View File

@ -17,11 +17,6 @@ If you just want to get up and running with Tiptap you can use the [Tiptap Creat
npx create-react-app my-tiptap-project --template tiptap
```
### Step by step
All steps are listed below, but if you prefer to watch a video weve got something for you, too:
https://tiptap.dev/screencasts/installation/install-tiptap-with-create-react-app
#### 1. Create a project (optional)
Lets start with a fresh React project called `my-tiptap-project`. [Create React App](https://reactjs.org/docs/getting-started.html) will set up everything we need.