forked from facelessuser/pymdown-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.spelling.yml
97 lines (94 loc) · 1.98 KB
/
.spelling.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
documents:
- name: mkdocs
parser: pyspelling.parsers.html_parser
options:
comments: false
attributes:
- title
- alt
ignores:
- code
- pre
- a.magiclink-compare
- a.magiclink-commit
- span.keys
- .MathJax_Preview
- .md-nav__link
- .md-footer-custom-text
- .md-source__repository
- .headerlink
- .md-icon
sources:
- site
aspell:
lang: en
dictionary:
lang: en
wordlists:
- docs/src/dictionary/en-custom.txt
output: build/dictionary/mkdocs.dic
- name: markdown
parser: pyspelling.parsers.markdown_parser
sources:
- README.md
aspell:
lang: en
dictionary:
lang: en
wordlists:
- docs/src/dictionary/en-custom.txt
output: build/dictionary/mkdocs.dic
filters:
- pyspelling.filters.html_filter:
comments: false
attributes:
- title
- alt
ignores:
- code
- pre
- name: javascript
parser: pyspelling.parsers.javascript_parser
options:
jsdocs: true
default_encoding: utf-8
sources:
- docs/src/js
aspell:
lang: en
dictionary:
lang: en
wordlists:
- docs/src/dictionary/en-custom.txt
- docs/src/dictionary/en-javascript.txt
output: build/dictionary/javascript.dic
- name: python
parser: pyspelling.parsers.python_parser
options:
comments: false
strings: false
sources:
- pymdownx
- tests
- tools
excludes:
- tools/tags/*
aspell:
lang: en
dictionary:
lang: en
wordlists:
- docs/src/dictionary/en-custom.txt
- docs/src/dictionary/en-python.txt
output: build/dictionary/python.dic
filters:
- pyspelling.filters.context_filter:
context_visible_first: true
escapes: \\[\\`~]
delimiters:
- open: (?P<open>`+)
content: .*?
close: (?P=open)
- open: (?s)^(?P<open>\s*~{3,})
content: .*?
close: ^(?P=open)$