Browse Source

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
Johannes 5 years ago
parent
commit
7a0fbd0eb1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/js/gogs.js

+ 1 - 1
public/js/gogs.js

@@ -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;
         }