mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-03-01 16:20:15 +01:00
13 lines
302 B
Markdown
13 lines
302 B
Markdown
|
|
# MD039 - Spaces inside link text
|
||
|
|
|
||
|
|
Tags: whitespace, links
|
||
|
|
|
||
|
|
Aliases: no-space-in-links
|
||
|
|
|
||
|
|
This rule is triggered on links that have spaces surrounding the link text:
|
||
|
|
|
||
|
|
[ a link ](http://www.example.com/)
|
||
|
|
|
||
|
|
To fix this, remove the spaces surrounding the link text:
|
||
|
|
|
||
|
|
[a link](http://www.example.com/)
|