How to comment in jade coffeescript

I am trying to use coffeescript in jade and ### doesn't seem to work. and the jade block level comment inside coffeescript does not allow me to comment on a number of lines. it just allows you to comment on a complete indent based block. any suggestions

thanks

+4
source share
1 answer

### comments seem to work for me (don't forget that this is for multi-line comments, so you need to close them):

 !!! 5 html(lang='en') head title App body :coffeescript ### Comment ### require "index" ### Comment 2 ### 

compiles:

 <!DOCTYPE html> <html lang="en"> <head> <title>App</title> </head> <body> <script type="text/javascript"> /* Comment */ (function() { require("index"); /* Comment 2 */ }).call(this); </script> </body> </html> 
+4
source

Source: https://habr.com/ru/post/1438522/