_file.html.erb
18 lines
| 453 B
| text/plain
|
TextLexer
|
r1505 | <div class="autoscroll"> | ||
|
r3471 | <table class="filecontent syntaxhl"> | ||
|
r1505 | <tbody> | ||
<% line_num = 1 %> | ||||
|
r8868 | <% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %> | ||
|
r7738 | <tr> | ||
<th class="line-num" id="L<%= line_num %>"> | ||||
<a href="#L<%= line_num %>"><%= line_num %></a> | ||||
</th> | ||||
<td class="line-code"> | ||||
|
r8868 | <pre><%= line.html_safe %></pre> | ||
|
r7738 | </td> | ||
</tr> | ||||
<% line_num += 1 %> | ||||
|
r1505 | <% end %> | ||
</tbody> | ||||
</table> | ||||
</div> | ||||