I found it very useful for myself to use // TODO: in IntellijIdea This is very convenient (before that, just kept a notebook). But the snag is that the ToDo list is formed only from the comments in the classes, but not in the html files that are also used in the project (((Can ToDo be somehow configured so that all the files are checked for this comment?

enter image description here

  • 2
    In addition to the answer below is another tip. Do not write with your hands // for comment. In some programming languages, comments are announced differently. For example, in php '//', in html '<! - ->', etc. Use hotkeys. For Maca 'cmd + /', for Windows and Linux: 'ctrl + /' - dluhhbiu

1 answer 1

Everything works the same way as usual, only a comment in the html document is not indicated by two slashes. Use this design:

<!--TODO: fix it--> 

Example for Rider (works on the same engine as IntelliJ IDEA ):

enter image description here

  • one
    Thank you very much! Everything turned out - VBugaenko