1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Doc: Clarify how to disable spellchecking on Markdown files

This commit is contained in:
Laurent Cozic
2025-10-10 17:48:37 +01:00
parent 8751d5d152
commit d4ed49ff23

View File

@@ -22,7 +22,7 @@ Please note that there cannot be more than 400 (maybe 500) words in those lists.
### Using comments
You can ignore a block of code by wrapping it in `// cSpell:disable` / `// cSpell:enable`.
You can ignore a block of code by wrapping it in `// cSpell:disable` / `// cSpell:enable` in JS/TS files, or in `<!-- cSpell:enable -->` / `<!-- cSpell:disable -->` in Markdown files.
Only do this when there's a large block of code that contains many words to be ignored. Otherwise prefer the word list because it means we don't pollute the code with additional comments.