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