Skip to content

Commit

Permalink
docs: Wrap install commands in quotes to prevent square bracket inter…
Browse files Browse the repository at this point in the history
…pretation by some shells
  • Loading branch information
pawamoy authored Oct 22, 2024
1 parent 21a93b2 commit 4c64526
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ To install all backends, use the `all` extra.
Otherwise specify the name(s) of the backend(s) as extra.

```bash
pip install mkdocs-spellcheck[all]
pip install mkdocs-spellcheck[codespell]
pip install mkdocs-spellcheck[symspellpy]
pip install mkdocs-spellcheck[codespell,symspellpy]
pip install 'mkdocs-spellcheck[all]'
pip install 'mkdocs-spellcheck[codespell]'
pip install 'mkdocs-spellcheck[symspellpy]'
pip install 'mkdocs-spellcheck[codespell,symspellpy]'
```

## Usage
Expand Down

0 comments on commit 4c64526

Please sign in to comment.