Jade - missing space before text for line x of jade file

后端 未结 6 2031
一整个雨季
一整个雨季 2020-12-30 19:05

I\'m making an Express based web application and everytime someone visits this jade file i get the following error:

Warning: missing space before text for li         


        
6条回答
  •  时光取名叫无心
    2020-12-30 19:46

    In Jade use | when start with only text

    wrong ->

    td
      {{anything}}
      br
      Hello
    

    correct ->

    td
      | {{anything}}
      br
      | Hello
    

提交回复
热议问题