Skip to content

Commit ba92a85

Browse files
authored
Adding rule md027 - no multiple spaces after blockquote (#37987)
1 parent 88158ff commit ba92a85

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/content-linter/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ We are using the [markdownlint](https://github.com/DavidAnson/markdownlint) fram
1717
| [MD022](https://github.com/DavidAnson/markdownlint/blob/main/doc/md022.md) | Headings must be surrounded by a blank line. | warning |
1818
| [MD023](https://github.com/DavidAnson/markdownlint/blob/main/doc/md023.md) | Headings must start at the beginning of the line. | error |
1919
| [MD024](https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md) | Disallow headings with the same content. | error |
20+
| [MD027](https://github.com/DavidAnson/markdownlint/blob/main/doc/md027.md) | Catches multiple spaces after blockquote symbol. | warning |
2021
| [MD011](https://github.com/DavidAnson/markdownlint/blob/main/doc/md011.md) | Make sure that link syntax is not reversed. | error |
2122
| [MD111](./linting-rules/image-alt-text-length.js) | Images alternate text should be between 40-150 characters. | warning |
2223
| [MD112](./linting-rules/image-alt-text-end-punctuation.js) | Images alternate text should end with a punctuation. | error |

src/content-linter/scripts/markdownlint.js

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ async function main() {
3838
MD022: true,
3939
MD023: true,
4040
MD024: true,
41+
MD027: true,
4142
MD111: true,
4243
MD112: true,
4344
MD113: true,

0 commit comments

Comments
 (0)