Good evening. I'm developing a chat and I'm breaking my head here in one part. I get the text, I deal with it, I check what img or link is and I just put it inside the <img>
and <a>
tags, respectively. If it is not a link, an image or text, I encapsulate with <code>
. So the result ends up like this:
let msg = "Olá, meu nome é josé. Você já viu esse site <a href="www.g1.com">g1</a>? Lá tem a imagem <img src="teste.jpg">. Podemos usa-lá dentro da <pre><code><div><p>teste</p></div></code></pre>. O que acha?;
And my question is: How do I get everything that's inside the CODE tag giving the famous escape in html? The end result should look like this, I think:
let msg = "Olá, meu nome é josé. Você já viu esse site <a href="www.g1.com">g1</a>? Lá tem a imagem <img src="teste.jpg">. Podemos usa-lá dentro da <pre><code> <div> <p> teste </p> </div> </code></pre>. O que acha?;
Thank you