I am new to working with Jade Engine and I am having trouble setting a value inside an attribute. Here is the code snippet I am currently using:
for job in jobs
tr
td
a(href="/job/= job.ID")= job.Title
The job.Title displays correctly, but I am unable to set the job.ID. I need the link to have an href like /job/12345, where 12345 is the job.ID. How can I achieve this?