You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_file.html.erb 543B

1234567891011121314151617181920
  1. <div class="autoscroll">
  2. <table class="filecontent syntaxhl">
  3. <tbody>
  4. <% line_num = 1 %>
  5. <% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %>
  6. <tr id="L<%= line_num %>">
  7. <th class="line-num"><a href="#L<%= line_num %>" data-txt="<%= line_num %>"></a></th>
  8. <td class="line-code">
  9. <% if line == "\n" or line == "\r\n" %>
  10. <br>
  11. <% else %>
  12. <div><%= line.html_safe %></div>
  13. <% end %>
  14. </td>
  15. </tr>
  16. <% line_num += 1 %>
  17. <% end %>
  18. </tbody>
  19. </table>
  20. </div>