markdownlint/doc/MD039.md

13 lines
302 B
Markdown
Raw Normal View History

# 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/)