This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
wangwei
/
aiforge
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
128
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Fix Erlang and Elixir highlight mappings (
#7044
)
tags/v1.9.0-rc1
Robert A. Nowak
techknowlogick
6 years ago
parent
60f47ce591
commit
c974fdcd68
1 changed files
with
37 additions
and
35 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+37
-35
modules/highlight/highlight.go
+ 37
- 35
modules/highlight/highlight.go
View File
@@ -26,45 +26,47 @@ var (
// Extensions that are same as highlight classes.
highlightExts = map[string]struct{}{
".arm": {},
".as": {},
".sh": {},
".cs": {},
".cpp": {},
".c": {},
".css": {},
".cmake": {},
".bat": {},
".dart": {},
".patch": {},
".elixir": {},
".erlang": {},
".go": {},
".html": {},
".xml": {},
".hs": {},
".ini": {},
".json": {},
".java": {},
".js": {},
".less": {},
".lua": {},
".php": {},
".py": {},
".rb": {},
".scss": {},
".sql": {},
".scala": {},
".swift": {},
".ts": {},
".vb": {},
".yml": {},
".yaml": {},
".arm": {},
".as": {},
".sh": {},
".cs": {},
".cpp": {},
".c": {},
".css": {},
".cmake": {},
".bat": {},
".dart": {},
".patch": {},
".erl": {},
".go": {},
".html": {},
".xml": {},
".hs": {},
".ini": {},
".json": {},
".java": {},
".js": {},
".less": {},
".lua": {},
".php": {},
".py": {},
".rb": {},
".scss": {},
".sql": {},
".scala": {},
".swift": {},
".ts": {},
".vb": {},
".yml": {},
".yaml": {},
}
// Extensions that are not same as highlight classes.
highlightMapping = map[string]string{
".txt": "nohighlight",
".txt": "nohighlight",
".escript": "erlang",
".ex": "elixir",
".exs": "elixir",
}
)
Write
Preview
Loading…
Cancel
Save