I tried making comments in Jade/pug, but the comments render as text in the HTML. This is my code:
doctype html
html(lang='en')
body
/ This should be a comment
What am I doing something stupid?
As written in the comment documentation, you can either use //
which will translate to a HTML comment or //-
which won't be visible in the outputted HTML code.