mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-06 10:19:11 +01:00
Fix Erlang and Elixir highlight mappings (#7044)
This commit is contained in:
parent
7d12ec2abd
commit
592924a34b
1 changed files with 37 additions and 35 deletions
|
@ -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",
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue