1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/markdownlint/doc/md039.md
2025-08-25 17:48:13 +08:00

22 lines
463 B
Markdown

# `MD039` - Spaces inside link text
Tags: `links`, `whitespace`
Aliases: `no-space-in-links`
Fixable: Some violations can be fixed by tooling
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.