mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-20 07:50:12 +01:00
37 lines
915 B
Markdown
37 lines
915 B
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"
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"link-image-style": {
|
|
"autolink": false,
|
|
"url_inline": false
|
|
}
|
|
} -->
|