github.com/servernoj/jade@v0.0.0-20231225191405-efec98d19db1/testdata/v2/comments.jade (about) 1 2 // just some paragraphs 3 p foo 4 p bar 5 6 7 //- will not output within markup 8 p foo 9 p bar 10 11 12 body 13 //- 14 Comments for your template writers. 15 Use as much text as you want. 16 // 17 Comments for your HTML readers. 18 Use as much text as you want. 19 20 21 doctype html 22 23 <!--[if IE 8]> 24 <html lang="en" class="lt-ie9"> 25 <![endif]--> 26 <!--[if gt IE 8]><!--> 27 <html lang="en"> 28 <!--<![endif]--> 29 30 body 31 p Supporting old web browsers is a pain. 32 33 </html> 34