mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
68 lines
1.3 KiB
Markdown
68 lines
1.3 KiB
Markdown
# Link Style No URL Inline Not Possible
|
|
|
|
Text [https://example.com](https://example.com) text
|
|
|
|
Text  text
|
|
|
|
Text [https://example.com](<https://example.com>) text
|
|
|
|
Text  text
|
|
|
|
Text [https://example.com](https://example.com/page "title") text
|
|
|
|
Text  text
|
|
|
|
Text [https://example.com](https://example.com "title") text
|
|
|
|
Text  text
|
|
|
|
Text [https://example.com][url] text
|
|
|
|
Text ![https://example.com][url] text
|
|
|
|
Text [https://example.com][url-title] text
|
|
|
|
Text ![https://example.com][url-title] text
|
|
|
|
Text <https://example.com> text {MD054}
|
|
|
|
[url]: https://example.com
|
|
[url-title]: https://example.com "title"
|
|
|
|
Text [link](https://example.com) text
|
|
|
|
Text  text
|
|
|
|
Text [link][url] text
|
|
|
|
Text ![link][url] text
|
|
|
|
Text [url][] text
|
|
|
|
Text ![url][] text
|
|
|
|
Text [url] text
|
|
|
|
Text ![url] text
|
|
|
|
Text [file.md](file.md) text
|
|
|
|
Text <user@example.com> text {MD054}
|
|
|
|
Text [user@example.com](user@example.com) text
|
|
|
|
Text [user@example.com][email] text
|
|
|
|
Text [email][] text
|
|
|
|
Text [email] text
|
|
|
|
[email]: user@example.com
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"descriptive-link-text": false,
|
|
"link-image-style": {
|
|
"autolink": false,
|
|
"url_inline": false
|
|
}
|
|
} -->
|