* blogs and columns written by Karen Pittman that correlate with the coordinated researcher.
function cleanFeedzyDescriptions() {
const descriptions = document.querySelectorAll('.feedzy-rss_description');
descriptions.forEach(function(desc) {
desc.innerHTML = desc.innerHTML.replace(/The post .*? appeared first on.*?(?=\.\s|$)/gi, '');
});
}
// Run once on page load
document.addEventListener("DOMContentLoaded", function () {
// Delay to ensure Feedzy loads its content
setTimeout(cleanFeedzyDescriptions, 1000);
});