Skip to content

Commit

Permalink
Merge pull request #61 from jalseth/markdown-comments
Browse files Browse the repository at this point in the history
Add comment handling for Markdown
  • Loading branch information
hhatto committed Mar 27, 2023
2 parents 8c92d3c + b84cab4 commit 45d410f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion language.go
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"LD Script": NewLanguage("LD Script", []string{"//"}, [][]string{{"/*", "*/"}}),
"LESS": NewLanguage("LESS", []string{"//"}, [][]string{{"/*", "*/"}}),
"Objective-C": NewLanguage("Objective-C", []string{"//"}, [][]string{{"/*", "*/"}}),
"Markdown": NewLanguage("Markdown", []string{}, [][]string{{"", ""}}),
"Markdown": NewLanguage("Markdown", []string{"<!--"}, [][]string{{"<!--", "-->"}}),
"Motoko": NewLanguage("Motoko", []string{"//"}, [][]string{{"/*", "*/"}}),
"Nix": NewLanguage("Nix", []string{"#"}, [][]string{{"/*", "*/"}}),
"NSIS": NewLanguage("NSIS", []string{"#", ";"}, [][]string{{"/*", "*/"}}),
Expand Down

0 comments on commit 45d410f

Please sign in to comment.