Skip to content

Commit b35c163

Browse files
committed
Update
1 parent f0c7cb8 commit b35c163

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.pyspelling.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,48 @@ matrix:
116116
- open: '\.\.\s+(image|include|only)::'
117117
close: '$'
118118
- pyspelling.filters.url:
119+
- name: markdown
120+
sources:
121+
- '**/*.md'
122+
dictionary:
123+
wordlists:
124+
- en-wordlist.txt
125+
pipeline:
126+
- pyspelling.filters.markdown:
127+
markdown_extensions:
128+
- markdown.extensions.extra:
129+
- markdown.extensions.admonition:
130+
- markdown.extensions.codehilite:
131+
- markdown.extensions.meta:
132+
- markdown.extensions.tables:
133+
- markdown.extensions.toc:
134+
- pyspelling.filters.html:
135+
comments: false
136+
ignores:
137+
- code
138+
- pre
139+
- tt
140+
- img
141+
- a
142+
- table
143+
- thead
144+
- tbody
145+
- th
146+
- tr
147+
- td
148+
- pyspelling.filters.context:
149+
context_visible_first: true
150+
delimiters:
151+
# Ignore code blocks
152+
- open: '```[a-z]*\n'
153+
close: '```\n'
154+
# Ignore inline code
155+
- open: '`'
156+
close: '`'
157+
# Ignore links
158+
- open: '\[([^]]*)\]'
159+
close: '\([^)]*\)'
160+
# Ignore HTML comments
161+
- open: '<!--'
162+
close: '-->'
163+
- pyspelling.filters.url:

0 commit comments

Comments
 (0)