document.addEventListener('DOMContentLoaded', () => { document.querySelectorAll('.home-post-card p, .home-post-card-p p').forEach(p => { // --- CLEAN TEXT --- let text = p.textContent; // Remove the literal string "[...]" text = text.replace(/\[\.\.\.\]/g, ''); // Remove "le plus tot possible" (case insensitive) text = text.replace(/\ble plus tot possible\b/gi, ''); // Remove extra spaces text = text.replace(/\s+/g, ' ').trim(); p.textContent = text; // --- ADD "…See More" LINK --- if (!p.querySelector('a[href="/news"]')) { const a = document.createElement('a'); a.href = '/news'; a.textContent = '…See More.'; a.setAttribute('aria-label', 'See more news'); a.style.marginLeft = '5px'; p.appendChild(a); } }); });

About admin

This author has not yet filled in any details.
So far admin has created 0 blog entries.
Go to Top