MDS049: no-space-in-link-text
Link text and image alt text must not have leading or trailing whitespace inside the brackets.
[ click here ](url) renders the spaces as part of the underlined text
in most renderers.
# Config
Enable:
rules:
no-space-in-link-text: trueDisable:
rules:
no-space-in-link-text: falseDisable image alt-text checking:
rules:
no-space-in-link-text:
check-images: false# Examples
# Bad
# Title
[ text ](https://example.com)# Good
# Title
Visit [example](https://example.com) for more.
