<%= title %>
<% notes.by_label_file.each do |label, per_file| %>
<%= label %>
-
<% per_file.each do |file, line_notes| %>
<%= file %>
-
<% line_notes.sort!{ |a,b| a.line <=> b.line } %>
<% line_notes.each do |note| %>
-
<%= h note.text %> <%= note.line %>
<% if note.code? %>
<%= note.code %>
<% end %>
<% end %>
<% end %>
-
<%= h note.text %> <%= note.line %>
<% if note.code? %>