Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_file_highlight.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7e57fc0d012358d43812e1b0174fd2133a2216d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.file-content.code.js-syntax-highlight.qa-file-content
  .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