04/02/2025 5:06 pm
Topic starter
Forum
Notifications
Clear all
Q&A & Troubleshooting
0
Posts
1
Users
0
Reactions
39
Views
0
TEst alani
function slugify(str) { return String(str) .normalize('NFKD') .replace(/[\u0300-\u036f]/g, '') .trim() .toLowerCase() .replace(/[^a-z0-9 -]/g, '') .replace(/\s+/g, '-') .replace(/-+/g, '-') }