mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-23 17:30:12 +01:00
Fix MD039/no-space-in-links range for multiple issues on the same line.
This commit is contained in:
parent
4843e277c0
commit
a75f1ecf2a
4 changed files with 22 additions and 7 deletions
|
|
@ -56,3 +56,5 @@ text text ```` code
|
|||
span code
|
||||
span```` text
|
||||
text.
|
||||
|
||||
Text [ space](link) text [space ](link) text [ space ](link) text.
|
||||
|
|
|
|||
|
|
@ -58,3 +58,5 @@ text text ````code
|
|||
span code
|
||||
span```` text
|
||||
text.
|
||||
|
||||
Text [space](link) text [space](link) text [space](link) text.
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
"ruleInformation": "https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/Rules.md#md033",
|
||||
"errorDetail": "Element: hr",
|
||||
"errorContext": null,
|
||||
"errorRange": [7, 5]
|
||||
"errorRange": [ 7, 5 ]
|
||||
},
|
||||
{
|
||||
"lineNumber": 8,
|
||||
|
|
@ -42,7 +42,7 @@
|
|||
"ruleInformation": "https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/Rules.md#md034",
|
||||
"errorDetail": null,
|
||||
"errorContext": "https://example.com",
|
||||
"errorRange": [6, 19]
|
||||
"errorRange": [ 6, 19 ]
|
||||
},
|
||||
{
|
||||
"lineNumber": 11,
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
"ruleInformation": "https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/Rules.md#md037",
|
||||
"errorDetail": null,
|
||||
"errorContext": "* inside *",
|
||||
"errorRange": [7, 10]
|
||||
"errorRange": [ 7, 10 ]
|
||||
},
|
||||
{
|
||||
"lineNumber": 31,
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
"ruleInformation": "https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/Rules.md#md038",
|
||||
"errorDetail": null,
|
||||
"errorContext": "` inside `",
|
||||
"errorRange": [7, 10]
|
||||
"errorRange": [ 7, 10 ]
|
||||
},
|
||||
{
|
||||
"lineNumber": 24,
|
||||
|
|
@ -222,7 +222,16 @@
|
|||
"ruleInformation": "https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/Rules.md#md039",
|
||||
"errorDetail": null,
|
||||
"errorContext": "[ inside ]",
|
||||
"errorRange": [7, 10]
|
||||
"errorRange": [ 7, 10 ]
|
||||
},
|
||||
{
|
||||
"lineNumber": 60,
|
||||
"ruleNames": [ "MD039", "no-space-in-links" ],
|
||||
"ruleDescription": "Spaces inside link text",
|
||||
"ruleInformation": "https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/Rules.md#md039",
|
||||
"errorDetail": null,
|
||||
"errorContext": "[ space]",
|
||||
"errorRange": [ 6, 8 ]
|
||||
},
|
||||
{
|
||||
"lineNumber": 21,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue