mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
61 lines
518 B
Markdown
61 lines
518 B
Markdown
# Blanks Around
|
|
|
|
---
|
|
|
|
## MD022/blanks-around-headings
|
|
|
|
>
|
|
### Alpha
|
|
> >
|
|
|
|
<!-- comment -->
|
|
### Beta
|
|
<!-- comments --><!-- comments -->
|
|
|
|
> Text
|
|
>
|
|
> ### Gamma
|
|
> >
|
|
> > Text
|
|
|
|
---
|
|
|
|
## MD031/blanks-around-fences
|
|
|
|
> >
|
|
```js
|
|
console.log();
|
|
```
|
|
>
|
|
|
|
<!-- prettier-ignore -->
|
|
```js
|
|
console.log();
|
|
```
|
|
<!-- prettier-ignore -->
|
|
|
|
> Text
|
|
>
|
|
> ```js
|
|
> console.log();
|
|
> ```
|
|
> >
|
|
> >Text
|
|
|
|
---
|
|
|
|
## MD032/blanks-around-lists
|
|
|
|
>
|
|
- List item
|
|
>>
|
|
|
|
<!--comments--><!-- comments -->
|
|
- List item
|
|
<!--comment-->
|
|
|
|
> Text
|
|
>
|
|
> - List item
|
|
>>
|
|
>> Text
|