Website/lib/link-name.js
2015-12-05 18:44:51 -05:00

10 lines
173 B
JavaScript

module.exports = function(name, ext){
if(ext == null){ ext = ".html" }
return ("people/"+
name.
replace(/ /g, "_").
replace(/ò/g, "o").
toLowerCase()
+ ext
)
}