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

后端 未结 6 2037
一整个雨季
一整个雨季 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:57

    I got this error when using the !{} syntax and had an extra return:

    .row 
      !{marked(val)}
    

    should be:

    .row !{marked(val)}
    

提交回复
热议问题