You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A link label begins with a left bracket ([) and ends with the first right bracket (]) that is not backslash-escaped. Between these brackets there must be at least one character that is not a space, tab, or line ending. Unescaped square bracket characters are not allowed inside the opening and closing square brackets of link labels. A link label can have at most 999 characters inside the square brackets.
One label matches another just in case their normalized forms are equal. To normalize a label, strip off the opening and closing brackets, perform the Unicode case fold, strip leading and trailing spaces, tabs, and line endings, and collapse consecutive internal spaces, tabs, and line endings to a single space. If there are multiple matching reference link definitions, the one that comes first in the document is used. (It is desirable in such cases to emit a warning.)
The following example is parsed by commonmark.js (see here)
[^1][^1]: /url
However, markdownlint complains with
No link definition found: '^1'(link.no-such-reference)
In addition to the above reason for supporting, support for these types of link labels would also be a particular help for users of footnotes.
The text was updated successfully, but these errors were encountered:
From https://spec.commonmark.org/0.30/#link-label:
The following example is parsed by commonmark.js (see here)
However, markdownlint complains with
No link definition found: '^1'(link.no-such-reference)
In addition to the above reason for supporting, support for these types of link labels would also be a particular help for users of footnotes.
The text was updated successfully, but these errors were encountered: