-
Notifications
You must be signed in to change notification settings - Fork 745
Avoid markdown footnotes #2033
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid markdown footnotes #2033
Conversation
These are apparently non-standard(?) and don't show well in rust doc anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Benchmark resultsInstruction countsSignificant differencesThere are no significant instruction count differences Other differencesClick to expand
Wall-timeSignificant differencesThere are no significant wall-time differences Other differencesClick to expand
Additional informationCheckout details:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2033 +/- ##
=======================================
Coverage 94.29% 94.29%
=======================================
Files 97 97
Lines 21841 21841
=======================================
Hits 20595 20595
Misses 1246 1246 ☔ View full report in Codecov by Sentry. |
Just to be clear, you got a warning because you forgot the -[0]: https://www.rfc-editor.org/rfc/rfc9180.html#section-5.1
+[^0]: https://www.rfc-editor.org/rfc/rfc9180.html#section-5.1 If you want to use footnotes and have them continue to work, try writing the Markdown you want in a GitHub comment and see if the preview tab looks right. |
These are apparently non-standard(?) and don't show well in rust doc anyway. They looked like:
Now this looks like:
As of rust-lang/rust#127127 this is now a warning.