Skip to content

Instantly share code, notes, and snippets.

@pataluc
Created February 26, 2025 13:41
Show Gist options
  • Save pataluc/cfb876a9b1b5539fe97e2ac1800f5134 to your computer and use it in GitHub Desktop.
Save pataluc/cfb876a9b1b5539fe97e2ac1800f5134 to your computer and use it in GitHub Desktop.
$('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