How to make a comment in haml? When "- #" in the line, the conversion of haml to html is interrupted and does not see nested tables:
!!! %html %head %title Заголовок %body %table -# Table 1- Main %tr %td %table -# Table 2 %tr %td 1 %td 2 %tr %td %table -# Table 3 %tr %td 3 %td 4
The same happens when using gem haml-rails in Ruby on Rails that I use. Tell me what I did wrong.