From 347040078519aa2e7d21cd53498c14d846685f7e Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Tue, 15 Sep 2020 17:55:22 +0200 Subject: [PATCH] add more content to the basic example --- docs/src/demos/Examples/Basic/index.vue | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/docs/src/demos/Examples/Basic/index.vue b/docs/src/demos/Examples/Basic/index.vue index c68bb616..ddf9dccc 100644 --- a/docs/src/demos/Examples/Basic/index.vue +++ b/docs/src/demos/Examples/Basic/index.vue @@ -77,9 +77,27 @@ export default { mounted() { this.editor = new Editor({ extensions: defaultExtensions(), - content: ` -

Hey there!

-

This editor is based on Prosemirror, fully extendable and renderless. You can easily add custom nodes as Vue components.

+ content: ` +

+ Hi there, +

+

+ this is a very basic example of tiptap. +

+
body { display: none; }
+ +
+ It's amazing 👏 +
+ – mom +
`, }) },