aboutsummaryrefslogtreecommitdiffstats
path: root/modules/highlight
diff options
context:
space:
mode:
Diffstat (limited to 'modules/highlight')
-rw-r--r--modules/highlight/highlight.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/highlight/highlight.go b/modules/highlight/highlight.go
index 1a64108139..914ba8210e 100644
--- a/modules/highlight/highlight.go
+++ b/modules/highlight/highlight.go
@@ -13,6 +13,7 @@ import (
"strings"
"sync"
+ "code.gitea.io/gitea/modules/analyze"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"github.com/alecthomas/chroma/formatters/html"
@@ -117,9 +118,11 @@ func File(numLines int, fileName string, code []byte) map[int]string {
fileName = "test." + val
}
- lexer := lexers.Match(fileName)
+ language := analyze.GetCodeLanguage(fileName, code)
+
+ lexer := lexers.Get(language)
if lexer == nil {
- lexer = lexers.Analyse(string(code))
+ lexer = lexers.Match(fileName)
if lexer == nil {
lexer = lexers.Fallback
}