Skip to content

Commit

Permalink
support sed
Browse files Browse the repository at this point in the history
  • Loading branch information
Hideo Hattori committed Apr 7, 2016
1 parent 517e500 commit 13c8801
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 @@ -124,6 +124,7 @@ var Exts map[string]string = map[string]string{
"rs": "rs",
"sass": "sass",
"scss": "sass",
"sed": "sed",
"sml": "sml",
"sql": "sql",
"swift": "swift",
Expand Down
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ func main() {
ruby_html := NewLanguage("Ruby HTML", "<!--", "<!--", "-->")
rust := NewLanguage("Rust", "//,///,//!", "/*", "*/")
sass := NewLanguage("Sass", "//", "/*", "*/")
sed := NewLanguage("sed", "#", "", "")
sh := NewLanguage("Bourne Shell", "#", "", "")
sml := NewLanguage("Standard ML", "", "(*", "*)")
sql := NewLanguage("SQL", "--", "/*", "*/")
Expand Down Expand Up @@ -180,6 +181,7 @@ func main() {
"rhtml": ruby_html,
"rs": rust,
"scss": sass,
"sed": sed,
"sh": sh,
"sml": sml,
"sql": sql,
Expand Down

0 comments on commit 13c8801

Please sign in to comment.