mirror of https://github.com/gogs/gogs.git
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-insensitivepull/5859/head
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…
Reference in New Issue