gitlab-org--gitlab-foss/app/views/shared/_file_highlight.html.haml

13 lines
478 B
Plaintext
Raw Normal View History

.file-content.code.js-syntax-highlight
.line-numbers
- if blob.data.present?
2015-06-15 21:32:37 +00:00
- blob.data.lines.each_index do |index|
- offset = defined?(first_line_number) ? first_line_number : 1
- i = index + offset
2015-06-07 03:15:32 +00:00
-# We're not using `link_to` because it is too slow once we get to thousands of lines.
%a{href: "#L#{i}", id: "L#{i}", 'data-line-number' => i}
2014-10-01 22:21:29 +00:00
%i.fa.fa-link
= i
2015-02-17 08:16:28 +00:00
:preserve
#{highlight(blob.name, blob.data)}