Skip to content

Commit

Permalink
add Handlebars
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Oct 11, 2022
1 parent 726a2bb commit 5e5915c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ var Exts = map[string]string{
"groovy": "Groovy",
"gradle": "Groovy",
"h": "C Header",
"hbs": "Handlebars",
"hs": "Haskell",
"hpp": "C++ Header",
"hh": "C++ Header",
Expand Down Expand Up @@ -512,6 +513,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"GLSL": NewLanguage("GLSL", []string{"//"}, [][]string{{"/*", "*/"}}),
"Go": NewLanguage("Go", []string{"//"}, [][]string{{"/*", "*/"}}),
"Groovy": NewLanguage("Groovy", []string{"//"}, [][]string{{"/*", "*/"}}),
"Handlebars": NewLanguage("Handlebars", []string{}, [][]string{{"<!--", "-->"}, {"{{!", "}}"}}),
"Haskell": NewLanguage("Haskell", []string{"--"}, [][]string{{"{-", "-}"}}),
"Haxe": NewLanguage("Haxe", []string{"//"}, [][]string{{"/*", "*/"}}),
"Hare": NewLanguage("Hare", []string{"//"}, [][]string{{"", ""}}),
Expand Down

0 comments on commit 5e5915c

Please sign in to comment.