Linking not working under <p> tag

If I use something like <p> [1](:/e397aeb4be4040cfadb5bfe1c5151b48) </p>
it doesn’t seem to work.

I have the same problem,
Any body is here to help

If you wrap Markdown in HTML tags it does not work because it is not HTML. You would have to use HTML style links.

<p>
<a href=":/e397aeb4be4040cfadb5bfe1c5151b48">1</a>
</p>

You can use some HTML in Markdown, but not Markdown in HTML.

1 Like