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