diff --git a/README.md b/README.md
index 558bc979..ecb2718a 100644
--- a/README.md
+++ b/README.md
@@ -12,13 +12,13 @@ A rich-text editor for Vue.js
npm install tiptap
```
-## Setup
+## Basic Setup
```vue
-
Hello world
+
Hi, I'm just a boring paragraph
@@ -46,6 +46,68 @@ export default {
## Extensions
+By default the editor will only support some boring paragraphs. Other nodes and marks are available as **extensions**. There is a package called `tiptap-extensions` with the most basic nodes, marks and plugins.
+
+#### Available Extensions
+
+```vue
+
+
+
+
Yay Headlines!
+
All these cool tags are working now.
+
+
+
+
+
+```
+
+#### Create Custom Extensions
+
Soon …
Until then you can take a look at the [embed example](https://github.com/heyscrumpy/tiptap/tree/master/examples/Components/Routes/Embeds).