-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy path.markdownlint.json
More file actions
77 lines (77 loc) · 1.61 KB
/
.markdownlint.json
File metadata and controls
77 lines (77 loc) · 1.61 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
76
77
{
"default": true,
"heading-style": {
"style": "atx"
},
"ul-style": {
"style": "asterisk"
},
"ul-indent": {
"indent": 4
},
"no-trailing-spaces": {
"br_spaces": 2
},
"line-length": false,
"commands-show-output": false,
"no-missing-space-closed-atx": false,
"no-duplicate-heading": {
"siblings_only": true
},
"single-h1": false,
"single-h1-page-breaks":{
"front_matter_title": ""
},
"no-trailing-punctuation": false,
"ol-prefix": {
"style": "one"
},
"fenced-code-language": false,
"first-line-h1": {
"front_matter_title": ""
},
"required-headings": false,
"proper-names": false,
"code-block-style": false,
"code-fence-style": {
"style": "backtick"
},
"emphasis-style": {
"style": "underscore"
},
"table-pipe-style": {
"style": "leading_and_trailing"
},
"no-inline-html": false,
"no-inline-or-nested-html": {
"allowed_elements": [
"div",
"br",
"tr",
"th",
"td",
"table",
"thead",
"tbody"
],
"table_allowed_elements": [
"strong"
],
"nested_allowed_elements": {
"td": [
"strong",
"b",
"a",
"sup",
"code"
],
"th": [
"strong",
"b",
"a",
"sup",
"code"
]
}
}
}