diff --git a/docs/src/data/posts/installation.md b/docs/src/data/posts/installation.md index b5a2c021..d01f5088 100644 --- a/docs/src/data/posts/installation.md +++ b/docs/src/data/posts/installation.md @@ -1,14 +1,16 @@ # Installation +tiptap has a very modular package structure and is independent of any framework. If you want to start as fast as possible, you need at least the two packages `@tiptap/core` and `@tiptap/starter-kit`. + ```bash # Using npm -npm install @tiptap/core +npm install @tiptap/core @tiptap/starter-kit # Using Yarn -yarn add @tiptap/core +yarn add @tiptap/core @tiptap/starter-kit ``` -## Quick Start +You can use it like this: ```js import { Editor } from '@tiptap/core' diff --git a/docs/src/data/posts/introduction.md b/docs/src/data/posts/introduction.md index c3110694..43913228 100644 --- a/docs/src/data/posts/introduction.md +++ b/docs/src/data/posts/introduction.md @@ -15,7 +15,7 @@ Although tiptap tries to hide most of the complexity of ProseMirror, it’s is b ## Contributing -Please see the [`CONTRIBUTING`](https://github.com/scrumpy/tiptap/blob/master/CONTRIBUTING.md) file for details. +Please see the [`CONTRIBUTING.md`](https://github.com/scrumpy/tiptap/blob/master/CONTRIBUTING.md) file for details. ```bash yarn install