Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a few typos in docs/installation.mdx #4219

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/website/content/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ Quill comes ready to use in several convenient forms.
## CDN

A globally distributed and available CDN is provided, backed by [jsDelivr](https://www.jsdelivr.com/).
This is the most convenience way to get started with Quill, and requires no build steps or package managers.
This is the most convenient way to get started with Quill, and requires no build steps or package managers.

### Full Build

For most users, the full build is the easiest way to get started with Quill.
It include the core Quill library, as well as common themes, formats, and modules.

To import the full build, you will need to include "quill.js" script and the stylesheet for the theme you wish to use.
To import the full build, you will need to include the "quill.js" script and the stylesheet for the theme you wish to use.

<Sandpack
files={{
Expand All @@ -37,7 +37,7 @@ To import the full build, you will need to include "quill.js" script and the sty
/>

<Hint>
Learn more about how to [customizing the toolbar](/docs/formats).
Learn more about how to [customize the toolbar](/docs/formats).
</Hint>

### Core Build
Expand Down Expand Up @@ -119,4 +119,4 @@ You can import them in your JavaScript files if you have a proper bundler setup.
import "quill/dist/quill.core.css";
```

Refer to [webpack-example](https://github.com/quilljs/webpack-example) for a sample project that uses Quill in a webpack project.
Refer to [webpack-example](https://github.com/quilljs/webpack-example) for a sample project that uses Quill in a webpack project.
Loading