Created
January 5, 2022 23:18
-
-
Save Yanioconjota/ab46a3e961258e4dde97a294f5487d28 to your computer and use it in GitHub Desktop.
HTML code display
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var preTag = document.querySelectorAll('pre'); | |
console.log(preTag.innerHTML); | |
for (var i = 0; i < preTag.length; i++) { | |
var pattern = preTag[i].innerHTML; | |
pattern = pattern.replace(/</g, "<").replace(/>/g, ">"); | |
console.log(pattern); | |
preTag[i].innerHTML = pattern; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment