2020-09-16 08:10:15 -04:00
|
|
|
#blob-content.file-content.code.js-syntax-highlight
|
2020-10-28 14:08:52 -04:00
|
|
|
- offset = defined?(first_line_number) ? first_line_number : 1
|
2014-01-27 06:12:58 -05:00
|
|
|
.line-numbers
|
2014-09-25 06:56:23 -04:00
|
|
|
- if blob.data.present?
|
2016-06-23 07:44:50 -04:00
|
|
|
- link = blob_link if defined?(blob_link)
|
2016-01-28 09:02:44 -05:00
|
|
|
- blob.data.each_line.each_with_index do |_, index|
|
2014-09-25 06:56:23 -04:00
|
|
|
- i = index + offset
|
2015-06-06 23:15:32 -04:00
|
|
|
-# We're not using `link_to` because it is too slow once we get to thousands of lines.
|
2021-03-23 11:09:28 -04:00
|
|
|
%a.file-line-num.diff-line-num{ href: "#{link}#L#{i}", id: "L#{i}", 'data-line-number' => i }
|
2014-09-25 06:56:23 -04:00
|
|
|
= i
|
2020-10-28 14:08:52 -04:00
|
|
|
- highlight = defined?(highlight_line) && highlight_line ? highlight_line - offset : nil
|
2020-11-05 19:09:14 -05:00
|
|
|
.blob-content{ data: { blob_id: blob.id, path: blob.path, highlight_line: highlight, qa_selector: 'file_content' } }
|
2018-09-06 00:34:25 -04:00
|
|
|
%pre.code.highlight
|
|
|
|
%code
|
|
|
|
= blob.present.highlight
|