Blame view

backend/makest/js/plugins/codemirror/mode/stex/stex.js 7.58 KB
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
  // CodeMirror, copyright (c) by Marijn Haverbeke and others
  // Distributed under an MIT license: http://codemirror.net/LICENSE
  
  /*
   * Author: Constantin Jucovschi (c.jucovschi@jacobs-university.de)
   * Licence: MIT
   */
  
  (function(mod) {
    if (typeof exports == "object" && typeof module == "object") // CommonJS
      mod(require("../../lib/codemirror"));
    else if (typeof define == "function" && define.amd) // AMD
      define(["../../lib/codemirror"], mod);
    else // Plain browser env
      mod(CodeMirror);
  })(function(CodeMirror) {
  "use strict";
  
  CodeMirror.defineMode("stex", function() {
      "use strict";
  
      function pushCommand(state, command) {
          state.cmdState.push(command);
      }
  
      function peekCommand(state) {
          if (state.cmdState.length > 0) {
              return state.cmdState[state.cmdState.length - 1];
          } else {
              return null;
          }
      }
  
      function popCommand(state) {
          var plug = state.cmdState.pop();
          if (plug) {
              plug.closeBracket();
          }
      }
  
      // returns the non-default plugin closest to the end of the list
      function getMostPowerful(state) {
          var context = state.cmdState;
          for (var i = context.length - 1; i >= 0; i--) {
              var plug = context[i];
              if (plug.name == "DEFAULT") {
                  continue;
              }
              return plug;
          }
          return { styleIdentifier: function() { return null; } };
      }
  
      function addPluginPattern(pluginName, cmdStyle, styles) {
          return function () {
              this.name = pluginName;
              this.bracketNo = 0;
              this.style = cmdStyle;
              this.styles = styles;
              this.argument = null;   // \begin and \end have arguments that follow. These are stored in the plugin
  
              this.styleIdentifier = function() {
                  return this.styles[this.bracketNo - 1] || null;
              };
              this.openBracket = function() {
                  this.bracketNo++;
                  return "bracket";
              };
              this.closeBracket = function() {};
          };
      }
  
      var plugins = {};
  
      plugins["importmodule"] = addPluginPattern("importmodule", "tag", ["string", "builtin"]);
      plugins["documentclass"] = addPluginPattern("documentclass", "tag", ["", "atom"]);
      plugins["usepackage"] = addPluginPattern("usepackage", "tag", ["atom"]);
      plugins["begin"] = addPluginPattern("begin", "tag", ["atom"]);
      plugins["end"] = addPluginPattern("end", "tag", ["atom"]);
  
      plugins["DEFAULT"] = function () {
          this.name = "DEFAULT";
          this.style = "tag";
  
          this.styleIdentifier = this.openBracket = this.closeBracket = function() {};
      };
  
      function setState(state, f) {
          state.f = f;
      }
  
      // called when in a normal (no environment) context
      function normal(source, state) {
          var plug;
          // Do we look like '\command' ?  If so, attempt to apply the plugin 'command'
          if (source.match(/^\\[a-zA-Z@]+/)) {
              var cmdName = source.current().slice(1);
              plug = plugins[cmdName] || plugins["DEFAULT"];
              plug = new plug();
              pushCommand(state, plug);
              setState(state, beginParams);
              return plug.style;
          }
  
          // escape characters
          if (source.match(/^\\[$&%#{}_]/)) {
            return "tag";
          }
  
          // white space control characters
          if (source.match(/^\\[,;!\/\\]/)) {
            return "tag";
          }
  
          // find if we're starting various math modes
          if (source.match("\\[")) {
              setState(state, function(source, state){ return inMathMode(source, state, "\\]"); });
              return "keyword";
          }
          if (source.match("$$")) {
              setState(state, function(source, state){ return inMathMode(source, state, "$$"); });
              return "keyword";
          }
          if (source.match("$")) {
              setState(state, function(source, state){ return inMathMode(source, state, "$"); });
              return "keyword";
          }
  
          var ch = source.next();
          if (ch == "%") {
              // special case: % at end of its own line; stay in same state
              if (!source.eol()) {
                setState(state, inCComment);
              }
              return "comment";
          }
          else if (ch == '}' || ch == ']') {
              plug = peekCommand(state);
              if (plug) {
                  plug.closeBracket(ch);
                  setState(state, beginParams);
              } else {
                  return "error";
              }
              return "bracket";
          } else if (ch == '{' || ch == '[') {
              plug = plugins["DEFAULT"];
              plug = new plug();
              pushCommand(state, plug);
              return "bracket";
          }
          else if (/\d/.test(ch)) {
              source.eatWhile(/[\w.%]/);
              return "atom";
          }
          else {
              source.eatWhile(/[\w\-_]/);
              plug = getMostPowerful(state);
              if (plug.name == 'begin') {
                  plug.argument = source.current();
              }
              return plug.styleIdentifier();
          }
      }
  
      function inCComment(source, state) {
          source.skipToEnd();
          setState(state, normal);
          return "comment";
      }
  
      function inMathMode(source, state, endModeSeq) {
          if (source.eatSpace()) {
              return null;
          }
          if (source.match(endModeSeq)) {
              setState(state, normal);
              return "keyword";
          }
          if (source.match(/^\\[a-zA-Z@]+/)) {
              return "tag";
          }
          if (source.match(/^[a-zA-Z]+/)) {
              return "variable-2";
          }
          // escape characters
          if (source.match(/^\\[$&%#{}_]/)) {
            return "tag";
          }
          // white space control characters
          if (source.match(/^\\[,;!\/]/)) {
            return "tag";
          }
          // special math-mode characters
          if (source.match(/^[\^_&]/)) {
            return "tag";
          }
          // non-special characters
          if (source.match(/^[+\-<>|=,\/@!*:;'"`~#?]/)) {
              return null;
          }
          if (source.match(/^(\d+\.\d*|\d*\.\d+|\d+)/)) {
            return "number";
          }
          var ch = source.next();
          if (ch == "{" || ch == "}" || ch == "[" || ch == "]" || ch == "(" || ch == ")") {
              return "bracket";
          }
  
          // eat comments here, because inCComment returns us to normal state!
          if (ch == "%") {
              if (!source.eol()) {
                  source.skipToEnd();
              }
              return "comment";
          }
          return "error";
      }
  
      function beginParams(source, state) {
          var ch = source.peek(), lastPlug;
          if (ch == '{' || ch == '[') {
              lastPlug = peekCommand(state);
              lastPlug.openBracket(ch);
              source.eat(ch);
              setState(state, normal);
              return "bracket";
          }
          if (/[ \t\r]/.test(ch)) {
              source.eat(ch);
              return null;
          }
          setState(state, normal);
          popCommand(state);
  
          return normal(source, state);
      }
  
      return {
          startState: function() {
              return {
                  cmdState: [],
                  f: normal
              };
          },
          copyState: function(s) {
              return {
                  cmdState: s.cmdState.slice(),
                  f: s.f
              };
          },
          token: function(stream, state) {
              return state.f(stream, state);
          },
          lineComment: "%"
      };
  });
  
  CodeMirror.defineMIME("text/x-stex", "stex");
  CodeMirror.defineMIME("text/x-latex", "stex");
  
  });