1

I have many  s' in my jade file and it shows as warnings when i run the node server :

Warning: missing space before text for line 210 of jade file "C:\Users\XX\Documents\GitHub\XXX\XX\registerPage.jade"

This warnings shows up wherever there is a  , I don't want it because the logs file generated from server are filled with these warnings.

Syed Faizan
  • 901
  • 3
  • 14
  • 28
  • Can you post your jade code? – hassansin Aug 03 '15 at 07:37
  • i read this post : http://stackoverflow.com/questions/20727360/do-i-have-to-use-nbsp-for-space-in-jade and used "| " , now it doesn't show warnings, but is there any other solution to this? – Syed Faizan Aug 03 '15 at 07:42

1 Answers1

1

Try and replace all   to | (pipeline followed by space)

Hemant Nagarkoti
  • 434
  • 2
  • 12