First seen on this page ; search for ][
to find two links that aren’t rendered.
Guessed minimal failing example:
~~~~exercism/note
[Link to Exercism][here]
~~~~
[here]: https://exercism.org/ "Exercism"
If this is not fixable, how should I work around this?
Workaround: move the link reference inside the block":
~~~~exercism/note
[Link to Exercism][here]
[here]: https://exercism.org/ "Exercism"
~~~~
1 Like
To be clear: this is a proven workaround?
glennj
February 14, 2023, 11:07pm
4
bobahop
February 15, 2023, 1:16am
5
You have to do the inline thing where the text is in square brackets followed by the URL in parentheses. I’ve done it in several approaches and it’s worked.
The problem is basically that it’s its own rendering context. Treat it as a standalone document!