Fix Erlang and Elixir highlight mappings (#7044)

This commit is contained in:
Robert A. Nowak 2019-05-30 23:23:16 +02:00 committed by techknowlogick
parent 7d12ec2abd
commit 592924a34b
1 changed files with 37 additions and 35 deletions

View File

@ -37,8 +37,7 @@ var (
".bat": {},
".dart": {},
".patch": {},
".elixir": {},
".erlang": {},
".erl": {},
".go": {},
".html": {},
".xml": {},
@ -65,6 +64,9 @@ var (
// Extensions that are not same as highlight classes.
highlightMapping = map[string]string{
".txt": "nohighlight",
".escript": "erlang",
".ex": "elixir",
".exs": "elixir",
}
)