Block comments in html.erb templates in rails

前端 未结 16 2187
北荒
北荒 2020-12-07 09:10

How do you comment out html mixed with ruby code?

some text <% ... %> more text <%= ... %>
something else
<% ... %>

In js

16条回答
  •  孤城傲影
    2020-12-07 09:56

    Use this for commenting single lines:

    <%# your_ruby_code %>
    

    For multiple lines, the

    <% 
    =begin %>  <% ruby_code %>
    <% 
    =end %>
    

    What you said would work.

提交回复
热议问题