Created
February 26, 2025 13:41
-
-
Save pataluc/cfb876a9b1b5539fe97e2ac1800f5134 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$('document').ready(function(){ | |
console.log('before') | |
document.querySelectorAll('pre.console-output span').forEach(span => { | |
if (span.textContent.includes('[info]')) { | |
span.style.color='cyan' | |
} | |
if (span.textContent.includes('[error]')) { | |
span.style.color='red' | |
} | |
}); | |
console.log('after') | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment