summaryrefslogtreecommitdiff
path: root/spec/javascripts/fixtures/line_highlighter.html.haml
blob: da1ebcdb23cacb744c7824b612e5c496f15ce086 (plain)
1
2
3
4
5
6
7
8
9
10
11
#tree-content-holder
  .file-content
    .line-numbers
      - 1.upto(25) do |i|
        %a{href: "#L#{i}", id: "L#{i}", 'data-line-number' => i}
          %i.fa.fa-link
          = i
    %pre.code.highlight
      %code
        - 1.upto(25) do |i|
          %span.line{id: "LC#{i}"}= "Line #{i}"