summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/mode/mediawiki/README.salvus
blob: 1babd779831d961b12a3b4a58aaa0641a7afd31d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
This is from https://github.com/wikimedia/mediawiki-extensions-CodeMirror

1. However, note I fixed a bug in their code:

@@ -684,7 +684,7 @@ CodeMirror.defineMode( 'mediawiki', function( config/*, parserConfig */ ) {
                                        var tagname = stream.match( /[^>\/\s\u00a0\.\*\,\[\]\{\}\$\^\+\?\|\/\\'`~<=!@#%&\(\)-]+/ );
                                        if ( tagname ) {
                                                tagname = tagname[0].toLowerCase();
-                                               if ( tagname in config.mwextTags ) { // Parser function
+                                               if ( config.mwextTags && tagname in config.mwextTags ) { // Parser function
                                                        if ( isCloseTag === true ) {
                                                                // @todo message
                                                                return 'error';


2. Note the comment about "evil BS" in the css file.