mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 22:40:13 +01:00
31 lines
251 B
Markdown
31 lines
251 B
Markdown
# Heading
|
|
|
|
## Empty links
|
|
|
|
[text]() {MD042}
|
|
|
|
[text](<>) {MD042}
|
|
|
|
[text](#) {MD042}
|
|
|
|
[text][frag] {MD042}
|
|
|
|
[frag]: #
|
|
|
|
## Non-empty links
|
|
|
|
[text](link)
|
|
|
|
[text](link "title")
|
|
|
|
[text](<link>)
|
|
|
|
[text](#frag)
|
|
|
|
[text][ref]
|
|
|
|
[ref]: link
|
|
|
|
[text]
|
|
|
|
[text]: link
|