Skip to content

Commit 7aae95a

Browse files
authored
Merge branch '5.x' into fix/counter-cache-command-args-order
2 parents ad378aa + bef560d commit 7aae95a

71 files changed

Lines changed: 520 additions & 404 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/cspell.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@
6363
"example",
6464
"Classes",
6565
"Redirect",
66-
"Layout"
66+
"Layout",
67+
"full",
68+
"olde",
69+
"olle"
6770
],
6871
"ignoreRegExpList": [
6972
"\\$[a-zA-Z_][a-zA-Z0-9_]*",

.github/markdownlint.json

Lines changed: 40 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
{
22
"default": true,
3-
"heading-increment": false,
4-
"no-hard-tabs": false,
5-
"no-multiple-blanks": false,
3+
"heading-increment": true,
4+
"no-hard-tabs": true,
5+
"no-multiple-blanks": true,
66
"line-length": false,
7-
"commands-show-output": false,
8-
"blanks-around-headings": false,
7+
"commands-show-output": true,
8+
"blanks-around-headings": true,
9+
"heading-start-left": true,
910
"no-duplicate-heading": false,
1011
"single-h1": false,
1112
"no-trailing-punctuation": false,
1213
"no-blanks-blockquote": false,
13-
"list-marker-space": false,
14-
"blanks-around-fences": false,
15-
"blanks-around-lists": false,
14+
"list-marker-space": true,
15+
"blanks-around-fences": true,
16+
"blanks-around-lists": true,
1617
"no-inline-html": {
1718
"allowed_elements": [
1819
"Badge",
@@ -33,18 +34,42 @@
3334
"svg",
3435
"path",
3536
"figure",
36-
"p"
37+
"p",
38+
"colgroup",
39+
"col",
40+
"strong",
41+
"sup",
42+
"section",
43+
"hr",
44+
"ol",
45+
"ul",
46+
"li",
47+
"em",
48+
"code"
3749
]
3850
},
39-
"no-bare-urls": false,
40-
"fenced-code-language": false,
51+
"no-bare-urls": true,
52+
"fenced-code-language": true,
4153
"first-line-heading": false,
4254
"code-block-style": false,
43-
"single-trailing-newline": false,
55+
"code-fence-style": {
56+
"style": "backtick"
57+
},
58+
"emphasis-style": {
59+
"style": "asterisk"
60+
},
61+
"strong-style": {
62+
"style": "asterisk"
63+
},
64+
"spaces-after-emphasis-marker": true,
65+
"spaces-after-code-fence-info": true,
66+
"spaces-inside-emphasis-markers": true,
67+
"spaces-inside-code-span-elements": true,
68+
"single-trailing-newline": true,
4469
"link-fragments": false,
45-
"table-pipe-style": false,
70+
"table-pipe-style": "leading_and_trailing",
4671
"table-column-count": false,
47-
"emphasis-style": false,
4872
"table-column-style": false,
49-
"descriptive-link-text": false
73+
"descriptive-link-text": false,
74+
"no-emphasis-as-heading": false
5075
}

0 commit comments

Comments
 (0)