<%= title %> <%= '=' * title.to_s.size %> <% notes.by_label_file.each do |label, per_file| %> <%= label %> <%= '-' * (label.size) %> <% per_file.each do |file, line_notes| %> ### file://<%= file %> <% line_notes.each do |note| %> * <%= note %> (<%= note.line %>) <% if note.code? %><%= "\n" + note.code.tabset(4).rstrip + "\n\n" %><% end %> <% end; end; end %>