when using underscore template i want to interpolate a value in anchor's href attribute like
a(href= "<%= id %>", class='products') //underscore template in jade
but the out put is
<a href="<% id %>" class="products">
so how to escape the < and > sign , and interpolate the value correctly?
Use != instead of = to unescape.
In your case:
a.products(href!="<%= id %>")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With