mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-01-26 00:46:10 +01:00
This commit is contained in:
parent
460836445c
commit
10f095c4fd
32 changed files with 3149 additions and 333 deletions
|
|
@ -1,18 +1,77 @@
|
|||
# Reference Link Style
|
||||
# Link Style reference_only
|
||||
|
||||
Text [url](https://example.com) text {MD054}
|
||||
|
||||
Text  text {MD054}
|
||||
|
||||
Text [url](<https://example.com>) text {MD054}
|
||||
|
||||
Text  text {MD054}
|
||||
|
||||
Text [url](https://example.com "title") text {MD054}
|
||||
|
||||
Text  text {MD054}
|
||||
|
||||
Text {MD054} [url](https://example.com
|
||||
"title") text
|
||||
|
||||
Text {MD054}  text
|
||||
|
||||
Text [url {MD054}](https://example.com) text
|
||||
Text  text
|
||||
Text [url] text
|
||||
Text ![url] text
|
||||
Text [text][url] text
|
||||
|
||||
Text ![text][url] text
|
||||
Text <https://example.com> {MD054} text
|
||||
|
||||
Text [url][] text
|
||||
|
||||
[url]: https://example.com
|
||||
Text ![url][] text
|
||||
|
||||
Text [url] text
|
||||
|
||||
Text ![url] text
|
||||
|
||||
Text <https://example.com> text {MD054}
|
||||
|
||||
[url]: https://example.com "title"
|
||||
|
||||
[undefined]
|
||||
|
||||
Text [url](https://example.com/embedded\3backslash) text {MD054}
|
||||
|
||||
Text [url](https://example.com/backslash\[escape) text {MD054}
|
||||
|
||||
Text [embedded-backslash] text
|
||||
|
||||
Text [backslash-escape] text
|
||||
|
||||
Text <https://example.com/embedded\3backslash> text {MD054}
|
||||
|
||||
Text <https://example.com/backslash[no-escape> text {MD054}
|
||||
|
||||
[embedded-backslash]: https://example.com/embedded\3backslash
|
||||
|
||||
[backslash-escape]: https://example.com/backslash\[escape
|
||||
|
||||
Text [url](<https://example.com/embedded space>) text {MD054}
|
||||
|
||||
Text [url](<https://example.com/embedded)paren>) text {MD054}
|
||||
|
||||
Text [url](https://example.com/\(parens\)) text {MD054}
|
||||
|
||||
Text [url](https://example.com/pa(re(ns))) text {MD054}
|
||||
|
||||
Text [url](relative/path) text {MD054}
|
||||
|
||||
Text [url](#fragment) text {MD054}
|
||||
|
||||
Text <https://example.com/pa)re(ns> text {MD054}
|
||||
|
||||
Text [url](https://example.com/an>g<le>) text {MD054}
|
||||
|
||||
<!-- markdownlint-configure-file {
|
||||
"link-fragments": false,
|
||||
"link-image-style": {
|
||||
"style": "reference_only"
|
||||
"autolink": false,
|
||||
"inline": false
|
||||
}
|
||||
} -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue