39ae9a59a5
This replaces the repository param. This allows more flexiblity as sometimes we have highlight content not related to repository. Sometimes we know ahead of time the language of the content. Lastly language determination seems better fit as a logic in the Blob class. `repository` param is only used to determine the language, which seems to be the responsiblity of Blob.
16 lines
656 B
Text
16 lines
656 B
Text
.file-content.code.js-syntax-highlight
|
|
.line-numbers
|
|
- if blob.data.present?
|
|
- link_icon = icon('link')
|
|
- link = blob_link if defined?(blob_link)
|
|
- blob.data.each_line.each_with_index do |_, index|
|
|
- offset = defined?(first_line_number) ? first_line_number : 1
|
|
- i = index + offset
|
|
-# We're not using `link_to` because it is too slow once we get to thousands of lines.
|
|
%a.diff-line-num{ href: "#{link}#L#{i}", id: "L#{i}", 'data-line-number' => i }
|
|
= link_icon
|
|
= i
|
|
.blob-content{ data: { blob_id: blob.id } }
|
|
%pre.code.highlight
|
|
%code
|
|
= blob.present.highlight
|