UNPKG

546 BJavaScriptView Raw
1Prism.languages.matlab = {
2 'comment': [
3 /%\{[\s\S]*?\}%/,
4 /%.+/
5 ],
6 'string': {
7 pattern: /\B'(?:''|[^'\r\n])*'/,
8 greedy: true
9 },
10 // FIXME We could handle imaginary numbers as a whole
11 'number': /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[eE][+-]?\d+)?(?:[ij])?|\b[ij]\b/,
12 'keyword': /\b(?:break|case|catch|continue|else|elseif|end|for|function|if|inf|NaN|otherwise|parfor|pause|pi|return|switch|try|while)\b/,
13 'function': /\b(?!\d)\w+(?=\s*\()/,
14 'operator': /\.?[*^\/\\']|[+\-:@]|[<>=~]=?|&&?|\|\|?/,
15 'punctuation': /\.{3}|[.,;\[\](){}!]/
16};