Update MD054/link-image-style to add url_inline parameter (fixes #753).

This commit is contained in:
David Anson 2023-11-12 22:42:02 -08:00
parent 84333a5f08
commit b709a2f624
26 changed files with 347 additions and 39 deletions

View file

@ -0,0 +1,37 @@
# Link Style No URL Inline Not Possible
Text [https://example.com](https://example.com) text
Text ![https://example.com](https://example.com) text
Text [https://example.com](<https://example.com>) text
Text ![https://example.com](<https://example.com>) text
Text [https://example.com](https://example.com/page "title") text
Text ![https://example.com](https://example.com/page "title") text
Text [https://example.com](https://example.com "title") text
Text ![https://example.com](https://example.com "title") 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
}
} -->