summaryrefslogtreecommitdiff
path: root/app/helpers/blob_helper.rb
blob: 420ac3f77c76508cc191931c56951f34bb06f74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module BlobHelper
  def highlightjs_class(blob_name)
    if no_highlight_files.include?(blob_name.downcase)
      'no-highlight'
    else
      blob_name.downcase
    end
  end

  def no_highlight_files
    %w(credits changelog copying copyright license authors)
  end
end