Skip to content

Commit

Permalink
add language: xslt
Browse files Browse the repository at this point in the history
  • Loading branch information
Hideo Hattori committed Apr 4, 2016
1 parent 522c4f8 commit 3709a45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ var Exts map[string]string = map[string]string{
"ts": "ts",
"vim": "vim",
"xml": "xml",
"xsl": "xsl",
"xslt": "xsl",
"yaml": "yaml",
"yml": "yaml",
"y": "y",
Expand Down
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ func main() {
type_script := NewLanguage("TypeScript", "//", "/*", "*/")
vim_script := NewLanguage("Vim script", "\"", "", "")
xml := NewLanguage("XML", "<!--", "<!--", "-->")
xsl := NewLanguage("XSLT", "<!--", "<!--", "-->")
yaml := NewLanguage("YAML", "#", "", "")
yacc := NewLanguage("Yacc", "//", "/*", "*/")
zsh := NewLanguage("Zsh", "#", "", "")
Expand Down Expand Up @@ -247,6 +248,7 @@ func main() {
"ts": type_script,
"vim": vim_script,
"xml": xml,
"xsl": xsl,
"yaml": yaml,
"y": yacc,
"zsh": zsh,
Expand Down

0 comments on commit 3709a45

Please sign in to comment.