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
Observe the second resource listed - Entropy and information theory) - is incorrectly rendered, and points to an incorrect entry, per the description above.
What device/software are you seeing this problem on?
macos 14.4 on Safari 17.4 and Chrome 123.0.6312.59
iOS 17.4/Safari
screenshot (Dev site):
Additional Information
Tentative analysis:
Newer Markdown implementations (e.g. GitHub's as of this writing) properly render an inline link[0] whose link destination[1] includes parenthesis. Older ones fail, and, as a result, what should be rendered in HTML as:
Wrapping the link destination within angle brackets solves that issue and should be forward compatible. Percent-encoding the inner parens (w/ %28 and %29, respectively) works as well.
Code of Conduct
I agree to follow this project's Code of Conduct
The text was updated successfully, but these errors were encountered:
Description of the bug
This affects both the production[0] and development[1] sites.
expected behaviour:
Entropy and information theory
https://en.wikipedia.org/wiki/Entropy_(information_theory)
actual behaviour:
Entropy and information theory)
// unexpected trailing parenthesishttps://en.wikipedia.org/wiki/Entropy_(information_theory
// the URL's closing parenthesis is missingI am attaching a screenshot taken of the dev site earlier today.
[0] https://www.csfieldguide.org.nz/en/chapters/coding-introduction/further-reading/
[1] https://cs-field-guide-dev.csse.canterbury.ac.nz/en/chapters/coding-introduction/further-reading/
Steps To Reproduce
Entropy and information theory)
- is incorrectly rendered, and points to an incorrect entry, per the description above.What device/software are you seeing this problem on?
macos 14.4 on Safari 17.4 and Chrome 123.0.6312.59
iOS 17.4/Safari
screenshot (Dev site):
Additional Information
Tentative analysis:
Newer Markdown implementations (e.g. GitHub's as of this writing) properly render an inline link[0] whose link destination[1] includes parenthesis. Older ones fail, and, as a result, what should be rendered in HTML as:
href="https://en.wikipedia.org/wiki/Entropy_(information_theory)"
is instead rendered as:
href="https://en.wikipedia.org/wiki/Entropy_(information_theory"
(closing parenthesis elided/wrong URL)
Wrapping the link destination within angle brackets solves that issue and should be forward compatible. Percent-encoding the inner parens (w/ %28 and %29, respectively) works as well.
Code of Conduct
The text was updated successfully, but these errors were encountered: