I'm trying to get jade to automatically generate urls for me:
so if I have a user link like this:
.userLink
a(href="/#{user}") #{user}
I want to be able to replace it with something like (hypothetical syntax):
.userLink
userLink(#{user})
Anyway to do this?
Thanks
Edit: OKAY I got it:
mixin userLink(user)
a(href="/" + user)= user
mixin userLink("Bob")
Seems like that will work.