-
Notifications
You must be signed in to change notification settings - Fork 2
/
spellcheck.yaml
51 lines (48 loc) · 1.4 KB
/
spellcheck.yaml
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
---
matrix:
- name: Markdown
sources:
- 'protocol/*.md'
- 'non-protocol-specs/*.md'
- 'glossaries/*.md'
- 'README.md'
default_encoding: utf-8
aspell:
d: en_GB
lang: en
ignore-case: true
dictionary:
encoding: utf-8
# output: .pyspelling-custom-md-en.dic.tmp
wordlists:
- wordlist.txt
pipeline:
- pyspelling.filters.url: null
# Filters: https://github.com/facelessuser/pyspelling/tree/master/docs/src/markdown/filters
- pyspelling.filters.context:
context_visible_first: true
escapes: '\\[\\`]'
delimiters:
# Ignore multiline content between (possibly indented) triple backticks
- open: '(?s)^(?P<open>---)'
close: '^(?P=open)$'
# Ignore multiline content between (possibly indented) triple backticks
- open: '(?s)^(?P<open>[ ]*```)'
close: '^(?P=open)$'
# Ignore text between inline back ticks
- open: '`'
close: '`'
# Ignore hugo/jinja tags
- open: '{{'
close: '}}'
- pyspelling.filters.markdown: null
- pyspelling.filters.html:
comments: false
attributes: # to include
- alt
- title
ignores:
- a
- api-ref-button
- code
- pre