2022-10-29 23:21:45 -07:00
|
|
|
This rule is triggered when the symbols used in the document for strong do not
|
|
|
|
match the configured strong style:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
**Text**
|
|
|
|
__Text__
|
|
|
|
```
|
|
|
|
|
|
|
|
To fix this issue, use the configured strong style throughout the document:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
**Text**
|
|
|
|
**Text**
|
|
|
|
```
|
|
|
|
|
2024-10-07 22:08:16 -07:00
|
|
|
The configured strong style can be a specific symbol to use (`asterisk`,
|
|
|
|
`underscore`) or can require all strong matches the first strong (`consistent`).
|
2022-10-29 23:21:45 -07:00
|
|
|
|
2024-10-07 22:08:16 -07:00
|
|
|
Note: Emphasis within a word is restricted to `asterisk` in order to avoid
|
|
|
|
unwanted emphasis for words containing internal underscores like__this__one.
|
2024-02-19 15:41:10 -08:00
|
|
|
|
2022-10-29 23:21:45 -07:00
|
|
|
Rationale: Consistent formatting makes it easier to understand a document.
|