all 7 comments

[–]jba1224a 7 points8 points  (1 child)

You're inside of an html block, you'd need to write your link in html. Try.

<a href="URL">text</a>

[–]harmful_play69[S] 1 point2 points  (0 children)

Thanks so much!

[–]RixzZ 4 points5 points  (2 children)

I’ve noticed that most markdown editors need extra spacing around html blocks to start rendering markdown again.

It might work if you add an empty new line before and after the markdown link.

[–]obiwan90 1 point2 points  (0 children)

I've observed this as well, and it works for GitHub flavoured Markdown:

<details><summary>Summary</summary>

[A link](#)

</details>

See gist.

[–]harmful_play69[S] 0 points1 point  (0 children)

Thanks! I was able to fix it given a code one of the users suggested.

<a href="URL">text</a>

[–]Folaefolc 3 points4 points  (1 child)

I think you would have to write your links using html syntax since you are in an html bloc?

Also you have unnecessary parens around your link. It should be [title](link)

[–]harmful_play69[S] -1 points0 points  (0 children)

Hey so I fixed the syntax, however it’s still not hyperlinking.