_file.html.erb
18 lines
| 442 B
| text/plain
|
TextLexer
|
r1505 | <div class="autoscroll"> | ||
|
r3471 | <table class="filecontent syntaxhl"> | ||
|
r1505 | <tbody> | ||
<% line_num = 1 %> | ||||
|
r7751 | <% syntax_highlight(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each_line 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"> | ||||
<pre><%= line %></pre> | ||||
</td> | ||||
</tr> | ||||
<% line_num += 1 %> | ||||
|
r1505 | <% end %> | ||
</tbody> | ||||
</table> | ||||
</div> | ||||