Skip to content

Commit ada1aab

Browse files
committed
docs: 📝 update docs module.md
1 parent cbbbb1a commit ada1aab

File tree

2 files changed

+25
-32
lines changed

2 files changed

+25
-32
lines changed

docs/content/.vitepress/config.js

Lines changed: 15 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -24,49 +24,32 @@ module.exports = {
2424

2525
// algolia: {
2626
// apiKey: 'b573aa848fd57fb47d693b531297403c',
27-
// indexName: 'vitejs'
27+
// indexName: 'vuequilldev'
2828
// },
2929

3030
// carbonAds: {
3131
// carbon: 'CEBIEK3N',
32-
// placement: 'vitejsdev'
32+
// placement: 'vuequilldev'
3333
// },
3434

3535
nav: [
3636
{ text: 'Guide', link: '/guide/' },
3737
{ text: 'API Reference', link: '/api/' },
3838
// { text: 'Config', link: '/config/' },
3939
// { text: 'Plugins', link: '/plugins/' },
40-
// {
41-
// text: 'Links',
42-
// items: [
43-
// {
44-
// text: 'Twitter',
45-
// link: 'https://twitter.com/vite_js'
46-
// },
47-
// {
48-
// text: 'Discord Chat',
49-
// link: 'https://chat.vitejs.dev'
50-
// },
51-
// {
52-
// text: 'Awesome Vite',
53-
// link: 'https://github.com/vitejs/awesome-vite'
54-
// },
55-
// {
56-
// text: 'DEV Community',
57-
// link: 'https://dev.to/t/vite'
58-
// },
59-
// {
60-
// text: 'Rollup Plugins Compat',
61-
// link: 'https://vite-rollup-plugins.patak.dev/'
62-
// },
63-
// {
64-
// text: 'Changelog',
65-
// link:
66-
// 'https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md'
67-
// }
68-
// ]
69-
// }
40+
{
41+
text: 'Support VueQuill',
42+
items: [
43+
{
44+
text: 'Patreon',
45+
link: 'https://www.patreon.com/luthfimasruri',
46+
},
47+
{
48+
text: 'Buy me a coffee',
49+
link: 'https://www.buymeacoffee.com/luthfimasruri',
50+
},
51+
],
52+
},
7053
],
7154

7255
sidebar: {

docs/content/guide/modules.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ Modules allow Quill’s behavior and functionality to be customized. To enable a
55

66
In this example I am gonna use [quill-blot-formatter](https://github.com/Fandom-OSS/quill-blot-formatter), a module for resizing and realigning images and iframe video.
77

8+
**Installation:**
9+
10+
``` bash
11+
npm install --save quill-blot-formatter
12+
# OR
13+
yarn add quill-blot-formatter
14+
```
15+
16+
**Usage:**
17+
818
~~~ vue
919
<template>
1020
<QuillEditor :modules="modules" toolbar="full" />

0 commit comments

Comments
 (0)