summaryrefslogtreecommitdiffstats
path: root/public/prism/prism-kusto.min.js
blob: fdbdeae1644efcdc26c5411ff9ca993871bdf79b (plain)
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
Prism.languages.kusto = {
  comment: { pattern: /\/\/.*/, greedy: !0 },
  string: {
    pattern:
      /```[\s\S]*?```|[hH]?(?:"(?:[^\r\n\\"]|\\.)*"|'(?:[^\r\n\\']|\\.)*'|@(?:"[^\r\n"]*"|'[^\r\n']*'))/,
    greedy: !0,
  },
  verb: { pattern: /(\|\s*)[a-z][\w-]*/i, lookbehind: !0, alias: 'keyword' },
  command: { pattern: /\.[a-z][a-z\d-]*\b/, alias: 'keyword' },
  'class-name':
    /\b(?:bool|datetime|decimal|dynamic|guid|int|long|real|string|timespan)\b/,
  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-])/,
  boolean: /\b(?:false|null|true)\b/,
  function: /\b[a-z_]\w*(?=\s*\()/,
  datetime: [
    {
      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/,
      alias: 'number',
    },
    {
      pattern:
        /[+-]?\b(?:\d{4}-\d{2}-\d{2}(?:[ T]\d{2}:\d{2}(?::\d{2}(?:\.\d+)?)?)?|\d{2}:\d{2}(?::\d{2}(?:\.\d+)?)?)Z?/,
      alias: 'number',
    },
  ],
  number:
    /\b(?:0x[0-9A-Fa-f]+|\d+(?:\.\d+)?(?:[Ee][+-]?\d+)?)(?:(?:min|sec|[mnµ]s|[dhms]|microsecond|tick)\b)?|[+-]?\binf\b/,
  operator: /=>|[!=]~|[!=<>]=?|[-+*/%|]|\.\./,
  punctuation: /[()\[\]{},;.:]/,
};