When using `Jade`, why is there an extra space added?
div.soldhere-title-large
| find
span.title-equal-span
| =
There is no space after the =
, but in my rendered HTML there is. Why does Jade do this and is开发者_StackOverflow there any way to stop it?
It looks like to get rid of the space, the content needs to be applied inline:
div.soldhere-title-large find
span.title-equal-span =
精彩评论