This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
forked from Python-Markdown/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In addition to checking the spelling in our documentation, we are now also checking the spelling of the README.md and similar files as well as comments in our Python code.
- Loading branch information
Showing
49 changed files
with
544 additions
and
480 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
spellchecker: aspell | ||
|
||
matrix: | ||
- name: mkdocs | ||
group: docs | ||
sources: | ||
- site/**/*.html | ||
aspell: | ||
lang: en | ||
d: en_US | ||
dictionary: | ||
wordlists: | ||
- .spell-dict | ||
output: build/dictionary/mkdocs.dic | ||
pipeline: | ||
- pyspelling.filters.html: | ||
comments: false | ||
attributes: | ||
- title | ||
- alt | ||
ignores: | ||
- 'code, pre' | ||
captures: | ||
- '[role=main] *|*:not(script,style)' | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
delimiters: | ||
# Ignore possessive endings | ||
- open: '(?<=\w)’s(?!\w)' | ||
close: '\b' | ||
- pyspelling.filters.url: | ||
|
||
- name: markdown | ||
group: docs | ||
sources: | ||
- README.md | ||
- INSTALL.md | ||
- LICENSE.md | ||
- CODE_OF_CONDUCT.md | ||
aspell: | ||
lang: en | ||
d: en_US | ||
mode: markdown | ||
dictionary: | ||
wordlists: | ||
- .spell-dict | ||
output: build/dictionary/markdown.dic | ||
|
||
- name: python | ||
group: source | ||
sources: | ||
- '{markdown,tests}/**/*.py' | ||
aspell: | ||
lang: en | ||
d: en_US | ||
mode: markdown | ||
dictionary: | ||
wordlists: | ||
- .spell-dict | ||
output: build/dictionary/python.dic | ||
pipeline: | ||
- pyspelling.filters.python: | ||
group_comments: true | ||
- pyspelling.flow_control.wildcard: | ||
allow: | ||
- py-comment | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
delimiters: | ||
# Ignore lint (noqa) and coverage (pragma) as well as shebang (#!) | ||
- open: '^(?: *(?:noqa\b|pragma: no cover)|!)' | ||
close: '$' | ||
# Ignore Python encoding string -*- encoding stuff -*- | ||
- open: '^ *-\*-' | ||
close: '-\*-$' | ||
# Ignore possessive endings | ||
- open: '(?<=\w)''s(?!\w)' | ||
close: '\b' | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
escapes: '\\[\\`]' | ||
delimiters: | ||
# Ignore lines which are inedented at least one level (Markdown code block) | ||
# For some reason indented code blocks are not properly ignored by aspell in markdown mode. | ||
# Warning: This could ignore a nested list item | ||
- open: '^ {4,}' | ||
close: '$' | ||
- pyspelling.filters.url: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.