mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
14 lines
317 B
Markdown
14 lines
317 B
Markdown
![]() |
This rule is triggered on links that have spaces surrounding the link text:
|
||
|
|
||
|
```markdown
|
||
|
[ a link ](https://www.example.com/)
|
||
|
```
|
||
|
|
||
|
To fix this, remove the spaces surrounding the link text:
|
||
|
|
||
|
```markdown
|
||
|
[a link](https://www.example.com/)
|
||
|
```
|
||
|
|
||
|
Rationale: Consistent formatting makes it easier to understand a document.
|