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
For one of my projects, I try to add a footnote to a list item:
-[url](https://www.url.com) - Description[^1].
[^1]: Some footnote.
This, however, keeps throwing a Found reference to undefined definition remark-lint:no-undefined-references error.
What I already tried
I tried placing the footnote after the punctuation mark, but this does not seem to fix the issue and throws an additional List item description must end with proper punctuation remark-lint:awesome-list-item error.
My current workaround
The only thing I can currently think of is adding <!--lint ignores no-undefined-references--> above this reference. I however would love another way since this is a bit constrictive.
How to reproduce
Paste the example code above in a markdown file.
Run the awesome-linter.
See the errors that appear.
The text was updated successfully, but these errors were encountered:
You should open an issue on the no-undefined-references rule, as it's where the problem is.
I think I found the problem (see remarkjs/remark-lint#234 (comment)). The footnotes are also not accepted when they are not in a list item:
Test[^1].
[^1]: A footnote.
I think this could be solved by adding the remark-gfm to awesome-lint package. Do you have a way to extend the awesome-lint? I tried to add a remark configuration file:
For one of my projects, I try to add a footnote to a list item:
This, however, keeps throwing a
Found reference to undefined definition remark-lint:no-undefined-references
error.What I already tried
I tried placing the footnote after the punctuation mark, but this does not seem to fix the issue and throws an additional
List item description must end with proper punctuation remark-lint:awesome-list-item
error.My current workaround
The only thing I can currently think of is adding
<!--lint ignores no-undefined-references-->
above this reference. I however would love another way since this is a bit constrictive.How to reproduce
The text was updated successfully, but these errors were encountered: