mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
103 lines
1.1 KiB
Markdown
103 lines
1.1 KiB
Markdown
# Lists with Nesting
|
|
|
|
## Excessive nesting
|
|
|
|
- one
|
|
1. two
|
|
1. three
|
|
- four
|
|
|
|
1. one
|
|
- two
|
|
- three
|
|
1. four
|
|
|
|
## Insufficient nesting
|
|
|
|
- one {MD032}
|
|
1. two {MD032}
|
|
- three {MD032}
|
|
|
|
1. one {MD032}
|
|
- two {MD006} {MD007} {MD032}
|
|
1. three {MD032}
|
|
|
|
## Correct nesting, same type
|
|
|
|
- one
|
|
- two
|
|
- three
|
|
- four
|
|
- five
|
|
- six
|
|
- seven
|
|
|
|
1. one
|
|
1. two
|
|
1. three
|
|
1. four
|
|
1. five
|
|
1. six
|
|
1. seven
|
|
|
|
## Correct nesting, different types
|
|
|
|
- one
|
|
1. two
|
|
1. three
|
|
- four
|
|
|
|
1. one
|
|
- two
|
|
- three
|
|
1. four
|
|
|
|
1. one
|
|
- two
|
|
- three
|
|
|
|
- one
|
|
1. two
|
|
- three
|
|
|
|
- one
|
|
- two
|
|
1. three
|
|
|
|
1. one
|
|
1. two
|
|
- three
|
|
|
|
1. one
|
|
- two
|
|
1. three
|
|
|
|
- one
|
|
1. two
|
|
1. three
|
|
|
|
- one
|
|
1. two
|
|
- three
|
|
1. four
|
|
- five
|
|
1. six
|
|
- seven
|
|
1. eight
|
|
|
|
1. one
|
|
- two
|
|
1. three
|
|
- four
|
|
1. five
|
|
- six
|
|
1. seven
|
|
- eight
|
|
|
|
* 1. Item {MD004} {MD006} {MD007}
|
|
* 2. Item {MD004} {MD006} {MD007}
|
|
* 3. Item {MD004} {MD006} {MD007}
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"MD006": true
|
|
} -->
|