mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 22:40:13 +01:00
Improve handling of nested tags and blocks by MD033/no-inline-html (fixes #179).
This commit is contained in:
parent
44fac78721
commit
4c7ffdd335
7 changed files with 372 additions and 18 deletions
|
|
@ -6,24 +6,56 @@
|
|||
|
||||
[text](<>) {MD042}
|
||||
|
||||
[text]( <> ) {MD042}
|
||||
|
||||
[text](<> "title") {MD042}
|
||||
|
||||
[text]( <> "title" ) {MD042}
|
||||
|
||||
[text](#) {MD042}
|
||||
|
||||
[text]( # ) {MD042}
|
||||
|
||||
[text](# "title") {MD042}
|
||||
|
||||
[text]( # "title" ) {MD042}
|
||||
|
||||
[text][frag] {MD042}
|
||||
|
||||
[text][ frag ] {MD042}
|
||||
|
||||
[frag]: #
|
||||
|
||||
## Non-empty links
|
||||
|
||||
[text](link)
|
||||
|
||||
[text]( link )
|
||||
|
||||
[text](link "title")
|
||||
|
||||
[text]( link "title" )
|
||||
|
||||
[text](<link>)
|
||||
|
||||
[text]( <link> )
|
||||
|
||||
[text](<link> "title")
|
||||
|
||||
[text]( <link> "title" )
|
||||
|
||||
[text](#frag)
|
||||
|
||||
[text]( #frag )
|
||||
|
||||
[text](#frag "title")
|
||||
|
||||
[text]( #frag "title" )
|
||||
|
||||
[text][ref]
|
||||
|
||||
[text][ ref ]
|
||||
|
||||
[ref]: link
|
||||
|
||||
[text]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue