prism-kusto.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Prism.languages.kusto = {
  2. 'comment': {
  3. pattern: /\/\/.*/,
  4. greedy: true
  5. },
  6. 'string': {
  7. pattern: /```[\s\S]*?```|[hH]?(?:"(?:[^\r\n\\"]|\\.)*"|'(?:[^\r\n\\']|\\.)*'|@(?:"[^\r\n"]*"|'[^\r\n']*'))/,
  8. greedy: true
  9. },
  10. 'verb': {
  11. pattern: /(\|\s*)[a-z][\w-]*/i,
  12. lookbehind: true,
  13. alias: 'keyword'
  14. },
  15. 'command': {
  16. pattern: /\.[a-z][a-z\d-]*\b/,
  17. alias: 'keyword'
  18. },
  19. 'class-name': /\b(?:bool|datetime|decimal|dynamic|guid|int|long|real|string|timespan)\b/,
  20. 'keyword': /\b(?:access|alias|and|anti|as|asc|auto|between|by|(?:contains|(?:ends|starts)with|has(?:perfix|suffix)?)(?:_cs)?|database|declare|desc|external|from|fullouter|has_all|in|ingestion|inline|inner|innerunique|into|(?:left|right)(?:anti(?:semi)?|inner|outer|semi)?|let|like|local|not|of|on|or|pattern|print|query_parameters|range|restrict|schema|set|step|table|tables|to|view|where|with|matches\s+regex|nulls\s+(?:first|last))(?![\w-])/,
  21. 'boolean': /\b(?:false|null|true)\b/,
  22. 'function': /\b[a-z_]\w*(?=\s*\()/,
  23. 'datetime': [
  24. {
  25. // RFC 822 + RFC 850
  26. pattern: /\b(?:(?:Fri|Friday|Mon|Monday|Sat|Saturday|Sun|Sunday|Thu|Thursday|Tue|Tuesday|Wed|Wednesday)\s*,\s*)?\d{1,2}(?:\s+|-)(?:Apr|Aug|Dec|Feb|Jan|Jul|Jun|Mar|May|Nov|Oct|Sep)(?:\s+|-)\d{2}\s+\d{2}:\d{2}(?::\d{2})?(?:\s*(?:\b(?:[A-Z]|(?:[ECMT][DS]|GM|U)T)|[+-]\d{4}))?\b/,
  27. alias: 'number'
  28. },
  29. {
  30. // ISO 8601
  31. pattern: /[+-]?\b(?:\d{4}-\d{2}-\d{2}(?:[ T]\d{2}:\d{2}(?::\d{2}(?:\.\d+)?)?)?|\d{2}:\d{2}(?::\d{2}(?:\.\d+)?)?)Z?/,
  32. alias: 'number'
  33. }
  34. ],
  35. 'number': /\b(?:0x[0-9A-Fa-f]+|\d+(?:\.\d+)?(?:[Ee][+-]?\d+)?)(?:(?:min|sec|[mnµ]s|[dhms]|microsecond|tick)\b)?|[+-]?\binf\b/,
  36. 'operator': /=>|[!=]~|[!=<>]=?|[-+*/%|]|\.\./,
  37. 'punctuation': /[()\[\]{},;.:]/
  38. };