2022-10-29 23:21:45 -07:00
|
|
|
This rule is triggered when the symbols used in the document for unordered
|
|
|
|
list items do not match the configured unordered list style:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
* Item 1
|
|
|
|
+ Item 2
|
|
|
|
- Item 3
|
|
|
|
```
|
|
|
|
|
|
|
|
To fix this issue, use the configured style for list items throughout the
|
|
|
|
document:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
* Item 1
|
|
|
|
* Item 2
|
|
|
|
* Item 3
|
|
|
|
```
|
|
|
|
|
2022-11-05 17:34:37 -07:00
|
|
|
The configured list style can be a specific symbol to use (asterisk, plus,
|
|
|
|
dash), to ensure that all list styling is consistent, or to ensure that each
|
2022-10-29 23:21:45 -07:00
|
|
|
sublist has a consistent symbol that differs from its parent list.
|
|
|
|
|
2022-11-05 17:34:37 -07:00
|
|
|
For example, the following is valid for the `sublist` style because the
|
|
|
|
outer-most indent uses asterisk, the middle indent uses plus, and the inner-most
|
|
|
|
indent uses dash:
|
2022-10-29 23:21:45 -07:00
|
|
|
|
|
|
|
```markdown
|
|
|
|
* Item 1
|
|
|
|
+ Item 2
|
|
|
|
- Item 3
|
|
|
|
+ Item 4
|
|
|
|
* Item 4
|
|
|
|
+ Item 5
|
|
|
|
```
|
|
|
|
|
|
|
|
Rationale: Consistent formatting makes it easier to understand a document.
|