Skip to content

Commit

Permalink
support Haxe
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Apr 19, 2016
1 parent 8aed783 commit 5a59ed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ var Exts map[string]string = map[string]string{
"hpp": "hpp",
"hh": "hpp",
"html": "html",
"hx": "Haxe",
"hxx": "hpp",
"il": "il",
"ipynb": "ipynb",
Expand Down
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ func main() {
golang := NewLanguage("Go", "//", "/*", "*/")
groovy := NewLanguage("Groovy", "//", "/*", "*/")
haskell := NewLanguage("Haskell", "--", "", "")
haxe := NewLanguage("Haxe", "//", "/*", "*/")
html := NewLanguage("HTML", "<!--", "<!--", "-->")
jai := NewLanguage("JAI", "//", "/*", "*/")
java := NewLanguage("Java", "//", "/*", "*/")
Expand Down Expand Up @@ -182,6 +183,7 @@ func main() {
"Groovy": groovy,
"h": c_header,
"hs": haskell,
"Haxe": haxe,
"hpp": cpp_header,
"html": html,
"il": skill,
Expand Down

0 comments on commit 5a59ed3

Please sign in to comment.