You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"comment": "MD022: Headers should be surrounded by blank lines.",
71
+
"comment": "Some headers have preceeding HTML anchors. Unfortunate that we have to disable this, as it otherwise catches a real problem that trips up some Markdown renderers",
72
+
"blanks-around-headers": false,
73
+
74
+
"comment": "MD023: Headers must start at the beginning of the line.",
75
+
"header-start-left": true,
76
+
77
+
"comment": "MD024: Disallow multiple headers with the same content.",
78
+
"no-duplicate-header": true,
79
+
80
+
"comment": "MD025: Disallow multiple top level headers in the same document.",
81
+
"comment": "Gotta have a matching closing brace at the end.",
82
+
"single-h1": false,
83
+
84
+
"comment": "MD026: Disallow trailing punctuation in header.",
85
+
"comment": "You must have a semicolon after the ending closing brace.",
86
+
"no-trailing-punctuation": {
87
+
"punctuation" : ".,:!?"
88
+
},
89
+
"comment": "MD027: Dissalow multiple spaces after blockquote symbol",
90
+
"no-multiple-space-blockquote": true,
91
+
92
+
"comment": "MD028: Blank line inside blockquote",
93
+
"comment": "Some 'Why?' and 'Why not?' blocks are separated by a blank line",
94
+
"no-blanks-blockquote": false,
95
+
96
+
"comment": "MD029: Ordered list item prefix",
97
+
"ol-prefix": {
98
+
"style": "one"
99
+
},
100
+
101
+
"comment": "MD030: Spaces after list markers",
102
+
"list-marker-space": {
103
+
"ul_single": 1,
104
+
"ol_single": 1,
105
+
"ul_multi": 1,
106
+
"ol_multi": 1
107
+
},
108
+
109
+
"comment": "MD031: Fenced code blocks should be surrounded by blank lines",
110
+
"blanks-around-fences": true,
111
+
112
+
"comment": "MD032: Lists should be surrounded by blank lines",
113
+
"comment": "Some lists have preceeding HTML anchors. Unfortunate that we have to disable this, as it otherwise catches a real problem that trips up some Markdown renderers",
114
+
"blanks-around-lists": false,
115
+
116
+
"comment": "MD033: Disallow inline HTML",
117
+
"comment": "HTML is needed for explicit anchors",
118
+
"no-inline-html": false,
119
+
120
+
"comment": "MD034: No bare URLs should be used",
121
+
"no-bare-urls": true,
122
+
123
+
"comment": "MD035: Horizontal rule style",
124
+
"hr-style": {
125
+
"style": "consistent"
126
+
},
127
+
128
+
"comment": "MD036: Do not use emphasis instead of a header.",
0 commit comments