diff --git a/docs/src/components/Demo/index.vue b/docs/src/components/Demo/index.vue index 4086b41b..b1c888c5 100644 --- a/docs/src/components/Demo/index.vue +++ b/docs/src/components/Demo/index.vue @@ -74,7 +74,7 @@ export default { content: null, currentIndex: 0, syntax: { - vue: 'markup', + vue: 'html', }, } }, diff --git a/docs/src/components/LiveDemo/index.vue b/docs/src/components/LiveDemo/index.vue index cbab7a99..cd032fb0 100644 --- a/docs/src/components/LiveDemo/index.vue +++ b/docs/src/components/LiveDemo/index.vue @@ -59,7 +59,7 @@ export default { currentIndex: 0, CustomLayout, syntax: { - vue: 'markup', + vue: 'html', }, } }, diff --git a/docs/src/docPages/guide/getting-started/vue-cli.md b/docs/src/docPages/guide/getting-started/vue-cli.md index c9c35f95..172f5a5f 100644 --- a/docs/src/docPages/guide/getting-started/vue-cli.md +++ b/docs/src/docPages/guide/getting-started/vue-cli.md @@ -60,7 +60,7 @@ This is the fastest way to get tiptap up and running with Vue. It will give you ## 5. Add it to your app Now, let’s replace the content of `src/App.vue` with the following example code to use our new `Tiptap` component in our app. -```js +```html