From 781cdfa54ebd1ba4733f63bb9d5844a59703a7e8 Mon Sep 17 00:00:00 2001 From: Patrick Baber Date: Wed, 28 Jun 2023 18:46:43 -0700 Subject: [PATCH] remove outdated screencasts (#4169) --- docs/guide/collaborative-editing.md | 5 ----- docs/installation/react.md | 5 ----- 2 files changed, 10 deletions(-) diff --git a/docs/guide/collaborative-editing.md b/docs/guide/collaborative-editing.md index 731c6d07c..3aa52efe0 100644 --- a/docs/guide/collaborative-editing.md +++ b/docs/guide/collaborative-editing.md @@ -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. Don’t worry, a production-grade setup doesn’t 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). diff --git a/docs/installation/react.md b/docs/installation/react.md index e20f4824e..eb3f70274 100644 --- a/docs/installation/react.md +++ b/docs/installation/react.md @@ -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 we’ve got something for you, too: - -https://tiptap.dev/screencasts/installation/install-tiptap-with-create-react-app - #### 1. Create a project (optional) Let’s 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.