Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

17 linhas
546 B

  1. Prism.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(?:NaN|break|case|catch|continue|else|elseif|end|for|function|if|inf|otherwise|parfor|pause|pi|return|switch|try|while)\b/,
  13. 'function': /\b(?!\d)\w+(?=\s*\()/,
  14. 'operator': /\.?[*^\/\\']|[+\-:@]|[<>=~]=?|&&?|\|\|?/,
  15. 'punctuation': /\.{3}|[.,;\[\](){}!]/
  16. };