2
Good evening. I’m developing a chat and I’m racking my brain here. I capture the text, treat it, check what is img or link and just put inside the tags <img>
and <a>
, respectively. If it is not a link, image or text, I encapsulate with <code>
. So the result ends up being like this, for example:
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 inside the tag CODE giving the famous escape in html? The final result should look like this, I believe:
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
You use jquery?
– Marcelo Shiniti Uchimura
No. Pure Js, friend.
– Rafael Pelizza
Then your fate will be difficult, I warn you
– Marcelo Shiniti Uchimura