mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-12 22:42:23 +00:00
A Crystal reimplementation of the Pygments/Chroma syntax highlighters
c37fe182d4
Improvement rearranged code |
||
---|---|---|
cli/slinguist | ||
internal | ||
.gitignore | ||
.travis.yml | ||
alias.go | ||
classifier.go | ||
common_test.go | ||
common.go | ||
content.go | ||
documentation.go | ||
extension.go | ||
filename.go | ||
frequencies.go | ||
generate.go | ||
interpreter.go | ||
LICENSE | ||
Makefile | ||
modeline.go | ||
README.md | ||
shebang.go | ||
type.go | ||
utils_test.go | ||
utils.go | ||
vendor.go |
simple-linguist
File language detector and toolbox to ignore binary or vendored files. simple-linguist, is our port to Go of the original linguist Ruby library, with fewer precision in arcane languages but with an improved performance of 100x.
Installation
The recommended way to install simple-linguist
go get gopkg.in/src-d/simple-linguist.v1/...
Examples
lang, _ := GetLanguageByExtension("foo.go")
fmt.Println(lang)
// result: Go
lang, _ = GetLanguageByContent("foo.m", "<matlab-code>")
fmt.Println(lang)
// result: Matlab
lang, _ = GetLanguageByContent("bar.m", "<pbjective-c-code>")
fmt.Println(lang)
// result: Objective-C
License
MIT, see LICENSE