-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
42 lines (33 loc) · 853 Bytes
/
Copy path.markdownlint.yaml
File metadata and controls
42 lines (33 loc) · 853 Bytes
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
# Markdownlint configuration
# See: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
default: true
# MD013: Line length - disabled for flexibility
MD013: false
# MD024: Multiple headings with the same content - allow in different sections
MD024:
siblings_only: true
# MD033: Inline HTML - allow specific elements
MD033:
allowed_elements:
- div
- h1
- p
- em
- b
- a
- img
- br
- details
- summary
- kbd
# MD036: Emphasis used instead of a heading - disabled
MD036: false
# MD040: Fenced code blocks should have a language specified
MD040: true
# MD041: First line in a file should be a top-level heading - disabled
MD041: false
# MD055: Table pipe style - require pretty/padded tables
MD055:
style: padded
# MD060: Table column style - disabled (not auto-fixable)
MD060: false