summaryrefslogtreecommitdiff
path: root/app/views/shared/_file_highlight.html.haml
blob: d6a2e177da120c24ea3addc34fb087372d47eccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.file-content.code{class: user_color_scheme_class}
  .line-numbers
    - if blob.data.present?
      - blob.data.lines.each_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{href: "#L#{i}", id: "L#{i}", 'data-line-number' => i}
          %i.fa.fa-link
          = i
  :preserve
    #{highlight(blob.name, blob.data)}