Skip to content

Commit

Permalink
add: ring-lang
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Feb 14, 2021
1 parent 39f3f37 commit ecf2a9b
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 @@ -212,6 +212,7 @@ var Exts = map[string]string{
"Rmd": "RMarkdown",
"rake": "Ruby",
"rb": "Ruby",
"ring": "Ring",
"rkt": "Racket",
"rhtml": "Ruby HTML",
"rs": "Rust",
Expand Down Expand Up @@ -532,6 +533,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"RAML": NewLanguage("RAML", []string{"#"}, [][]string{{"", ""}}),
"Racket": NewLanguage("Racket", []string{";"}, [][]string{{"#|", "|#"}}),
"ReStructuredText": NewLanguage("ReStructuredText", []string{}, [][]string{{"", ""}}),
"Ring": NewLanguage("Ring", []string{"#", "//"}, [][]string{{"/*", "*/"}}),
"Ruby": NewLanguage("Ruby", []string{"#"}, [][]string{{":=begin", ":=end"}}),
"Ruby HTML": NewLanguage("Ruby HTML", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
"Rust": NewLanguage("Rust", []string{"//", "///", "//!"}, [][]string{{"/*", "*/"}}),
Expand Down

0 comments on commit ecf2a9b

Please sign in to comment.