mirror of
https://github.com/gogs/gogs.git
synced 2025-05-23 16:00:56 +00:00
public: makes CodeMirror mode by filename lookups case-insensitive (#5857)
* updated the highlight.js plugin * added some explicit mappings for syntax highlighting * public: makes CodeMirror mode by filename extension lookup case-insensitive
This commit is contained in:
parent
53d30ccde9
commit
7a0fbd0eb1
@ -719,7 +719,7 @@ function initEditor() {
|
||||
var val = $editFilename.val(), m, mode, spec, extension, extWithDot, previewLink, dataUrl, apiCall;
|
||||
extension = extWithDot = "";
|
||||
if (m = /.+\.([^.]+)$/.exec(val)) {
|
||||
extension = m[1];
|
||||
extension = m[1].toLowerCase();
|
||||
extWithDot = "." + extension;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user