mirror of
https://github.com/go-gitea/gitea.git
synced 2026-01-28 18:29:39 +01:00
For when Enry correctly recognized the language, but returns the language name in a way that isn't recognized by chroma. Resolves https://github.com/go-gitea/gitea/issues/22443 --------- Co-authored-by: Moritz Jörg <moritz.jorg@oceanbox.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
29 lines
638 B
Go
29 lines
638 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package analyze
|
|
|
|
import (
|
|
"path"
|
|
|
|
"github.com/go-enry/go-enry/v2"
|
|
)
|
|
|
|
// GetCodeLanguage detects code language based on file name and content
|
|
// It can be slow when the content is used for detection
|
|
func GetCodeLanguage(filename string, content []byte) string {
|
|
if language, ok := enry.GetLanguageByExtension(filename); ok {
|
|
return language
|
|
}
|
|
|
|
if language, ok := enry.GetLanguageByFilename(filename); ok {
|
|
return language
|
|
}
|
|
|
|
if len(content) == 0 {
|
|
return enry.OtherLanguage
|
|
}
|
|
|
|
return enry.GetLanguage(path.Base(filename), content)
|
|
}
|