mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
63 lines
489 B
Markdown
63 lines
489 B
Markdown
# Lists on a Line
|
|
|
|
## Correct
|
|
|
|
Text
|
|
|
|
* * Item
|
|
|
|
Text
|
|
|
|
* * * Item
|
|
|
|
Text
|
|
|
|
- + * Item
|
|
|
|
Text
|
|
|
|
- 1. Item
|
|
|
|
Text
|
|
|
|
- 1. + Item
|
|
|
|
Text
|
|
|
|
* * * Item
|
|
* Item
|
|
* Item
|
|
* Item
|
|
|
|
## Incorrect
|
|
|
|
Text
|
|
|
|
* * Item {MD007}
|
|
|
|
Text
|
|
|
|
* * * Item {MD007}
|
|
|
|
Text
|
|
|
|
- + * Item {MD007}
|
|
|
|
Text
|
|
|
|
- 1. Item {MD007}
|
|
|
|
Text
|
|
|
|
- 1. + Item {MD007}
|
|
|
|
Text
|
|
|
|
* * * Item {MD007}
|
|
* Item {MD005} {MD007}
|
|
* Item {MD005} {MD007}
|
|
* Item {MD005} {MD007}
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"ul-style": false
|
|
} -->
|