mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
23 lines
557 B
Markdown
23 lines
557 B
Markdown
# Descriptive Link Text Override
|
|
|
|
[Go here](https://example.com/javascript/about) {MD059}
|
|
|
|
[Learn more](https://example.com/javascript/about).
|
|
|
|
[Click here](https://example.com/javascript/about).
|
|
|
|
To learn more, go [here!](https://example.com/site).
|
|
|
|
To learn more, go to this [link!](https://example.com/links).
|
|
|
|
If you need additional guidance, read [this](https://example.com/links). {MD059}
|
|
|
|
[link][url]
|
|
|
|
[url]: https://example.com
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"descriptive-link-text": {
|
|
"prohibited_texts": [ "go here", "THIS" ]
|
|
}
|
|
} -->
|