If you have tags that are more than one word (digital garden?) you need to slugify your tags.
function slugifyTag(tag) {return tag.toLowerCase().replace(/ /g, '-').replace(/[^\w-]+/g, '');}
up next
- content directories
- templating
If you have tags that are more than one word (digital garden?) you need to slugify your tags.
function slugifyTag(tag) {return tag.toLowerCase().replace(/ /g, '-').replace(/[^\w-]+/g, '');}