From 0d13abb1c8d527f2a6e6b97e34899e9b35f264bc Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Sat, 7 Jun 2014 15:46:58 +0300 Subject: [PATCH] Specify language detection for highlight.js Because I am tired of CHANGELOG highlighted as sql file :) Signed-off-by: Dmitriy Zaporozhets --- app/helpers/blob_helper.rb | 18 ++++++++++++++++++ app/views/shared/_file_hljs.html.haml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 app/helpers/blob_helper.rb diff --git a/app/helpers/blob_helper.rb b/app/helpers/blob_helper.rb new file mode 100644 index 00000000000..11fbf1baae7 --- /dev/null +++ b/app/helpers/blob_helper.rb @@ -0,0 +1,18 @@ +module BlobHelper + def highlightjs_class(blob_name) + if blob_name.include?('.') + ext = blob_name.split('.').last + return 'language-' + ext + else + if no_highlight_files.include?(blob_name.downcase) + 'no-highlight' + else + blob_name.downcase + end + end + end + + def no_highlight_files + %w(credits changelog copying copyright license authors) + end +end diff --git a/app/views/shared/_file_hljs.html.haml b/app/views/shared/_file_hljs.html.haml index 338236c0752..ceee2c7527d 100644 --- a/app/views/shared/_file_hljs.html.haml +++ b/app/views/shared/_file_hljs.html.haml @@ -8,5 +8,5 @@ = i .highlight %pre - %code + %code{ class: highlightjs_class(blob.name) } = blob.data