function text2slug(text) { return text.toLowerCase().replace(/ /g,'-').replace(/[^\w-]+/g,''); }