summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/syntax_highlighting.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/redmine/syntax_highlighting.rb b/lib/redmine/syntax_highlighting.rb
index 7f4334977..4380627ac 100644
--- a/lib/redmine/syntax_highlighting.rb
+++ b/lib/redmine/syntax_highlighting.rb
@@ -70,7 +70,10 @@ module Redmine
end
def language_supported?(language)
- ::CodeRay::Scanners.list.include?(language.to_s.downcase.to_sym)
+ supported_languages =
+ ::CodeRay::Scanners.list +
+ ::CodeRay::Scanners.plugin_hash.keys.map(&:to_sym)
+ supported_languages.include?(language.to_s.downcase.to_sym)
rescue
false
end