From 6f17e26f51885540f5f58dd20d208f2534f9cdae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20K=C3=BChn?= Date: Thu, 23 Aug 2018 23:02:28 +0200 Subject: [PATCH] add some information about extensions to readme --- README.md | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 64 insertions(+), 2 deletions(-) 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 @@ -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 + + + +``` + +#### 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).