I once had a teacher that couldn't help but use a lot of bold text and awful colors for every announcement.
This seemed to help.
| $$('.user_content [style*="color"]').map(e => { | |
| e.style.color = null | |
| }) | |
| $$('.user_content [style*="font-family"]').map(e => { | |
| e.style.fontFamily = null | |
| }) | |
| $$('.user_content [style*="font-size"]').map(e => { | |
| e.style.fontSize = null | |
| }) | |
| $$('.user_content strong').map(e => { | |
| e.parent | |
| }) |