There is some way to make strong some words in the same code line using Jade to generate the HTML?
I try to use markdown code, like this. But isn't working:
p Here are my **strong words** in my sentence!
An unique solution that I found (here) was:
p Here are my <strong>strong words</strong> in my sentence!
There any other way?
Thank you!