mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-14 15:32:24 +00:00
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
|
package slinguist
|
||
|
|
||
|
// CODE GENERATED AUTOMATICALLY WITH gopkg.in/src-d/simple-linguist.v1/internal/code-generator
|
||
|
// THIS FILE SHOULD NOT BE EDITED BY HAND
|
||
|
// Extracted from github/linguist commit: fe8b44ab8a225b1ffa75b983b916ea22fee5b6f7
|
||
|
|
||
|
// languagesByAlias keeps alias for different languages and use the name of the languages as a alias too. All the
|
||
|
// keys (alias or not) are written in lower case and the whitespaces has been replaced by underscores.
|
||
|
var languagesByAlias = map[string]string{
|
||
|
"asp": "ASP",
|
||
|
"aspx": "ASP",
|
||
|
"aspx-vb": "ASP",
|
||
|
"au3": "AutoIt",
|
||
|
"autoit": "AutoIt",
|
||
|
"autoit3": "AutoIt",
|
||
|
"autoitscript": "AutoIt",
|
||
|
"bat": "Batchfile",
|
||
|
"batch": "Batchfile",
|
||
|
"batchfile": "Batchfile",
|
||
|
"bsdmake": "Makefile",
|
||
|
"c++": "C++",
|
||
|
"cpp": "C++",
|
||
|
"django": "HTML+Django",
|
||
|
"dosbatch": "Batchfile",
|
||
|
"go": "Go",
|
||
|
"golang": "Go",
|
||
|
"gradle": "Gradle",
|
||
|
"html+django": "HTML+Django",
|
||
|
"html+django/jinja": "HTML+Django",
|
||
|
"html+jinja": "HTML+Django",
|
||
|
"htmldjango": "HTML+Django",
|
||
|
"make": "Makefile",
|
||
|
"makefile": "Makefile",
|
||
|
"mf": "Makefile",
|
||
|
"njk": "HTML+Django",
|
||
|
"nunjucks": "HTML+Django",
|
||
|
"obj-c": "Objective-C",
|
||
|
"objc": "Objective-C",
|
||
|
"objective-c": "Objective-C",
|
||
|
"objectivec": "Objective-C",
|
||
|
"winbatch": "Batchfile",
|
||
|
}
|