-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathmarkdownlint.json
More file actions
75 lines (75 loc) · 1.55 KB
/
markdownlint.json
File metadata and controls
75 lines (75 loc) · 1.55 KB
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
{
"default": true,
"heading-increment": true,
"no-hard-tabs": true,
"no-multiple-blanks": true,
"line-length": false,
"commands-show-output": true,
"blanks-around-headings": true,
"heading-start-left": true,
"no-duplicate-heading": false,
"single-h1": false,
"no-trailing-punctuation": false,
"no-blanks-blockquote": false,
"list-marker-space": true,
"blanks-around-fences": true,
"blanks-around-lists": true,
"no-inline-html": {
"allowed_elements": [
"Badge",
"div",
"span",
"br",
"style",
"details",
"summary",
"table",
"thead",
"tbody",
"tr",
"th",
"td",
"img",
"a",
"svg",
"path",
"figure",
"p",
"colgroup",
"col",
"strong",
"sup",
"section",
"hr",
"ol",
"ul",
"li",
"em",
"code"
]
},
"no-bare-urls": true,
"fenced-code-language": true,
"first-line-heading": false,
"code-block-style": false,
"code-fence-style": {
"style": "backtick"
},
"emphasis-style": {
"style": "asterisk"
},
"strong-style": {
"style": "asterisk"
},
"spaces-after-emphasis-marker": true,
"spaces-after-code-fence-info": true,
"spaces-inside-emphasis-markers": true,
"spaces-inside-code-span-elements": true,
"single-trailing-newline": true,
"link-fragments": false,
"table-pipe-style": "leading_and_trailing",
"table-column-count": false,
"table-column-style": false,
"descriptive-link-text": false,
"no-emphasis-as-heading": false
}