42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
![]() |
(function (Prism) {
|
||
|
Prism.languages.dataweave = {
|
||
|
'url': /\b[A-Za-z]+:\/\/[\w/:.?=&-]+|\burn:[\w:.?=&-]+/,
|
||
|
'property': {
|
||
|
pattern: /(?:\w+#)?(?:"(?:\\.|[^\\"\r\n])*"|\w+)(?=\s*[:@])/,
|
||
|
greedy: true
|
||
|
},
|
||
|
'string': {
|
||
|
pattern: /(["'`])(?:\\[\s\S]|(?!\1)[^\\])*\1/,
|
||
|
greedy: true
|
||
|
},
|
||
|
'mime-type': /\b(?:text|audio|video|application|multipart|image)\/[\w+-]+/,
|
||
|
'date': {
|
||
|
pattern: /\|[\w:+-]+\|/,
|
||
|
greedy: true
|
||
|
},
|
||
|
'comment': [
|
||
|
{
|
||
|
pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,
|
||
|
lookbehind: true,
|
||
|
greedy: true
|
||
|
},
|
||
|
{
|
||
|
pattern: /(^|[^\\:])\/\/.*/,
|
||
|
lookbehind: true,
|
||
|
greedy: true
|
||
|
}
|
||
|
],
|
||
|
'regex': {
|
||
|
pattern: /\/(?:[^\\\/\r\n]|\\[^\r\n])+\//,
|
||
|
greedy: true
|
||
|
},
|
||
|
'function': /\b[A-Za-z_]\w*(?=\s*\()/i,
|
||
|
'number': /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,
|
||
|
'punctuation': /[{}[\];(),.:@]/,
|
||
|
'operator': /<<|>>|->|[<>~=]=?|!=|--?-?|\+\+?|\!|\?/,
|
||
|
'boolean': /\b(?:true|false)\b/,
|
||
|
'keyword': /\b(?:match|input|output|ns|type|update|null|if|else|using|unless|at|is|as|case|do|fun|var|not|and|or)\b/
|
||
|
};
|
||
|
|
||
|
}(Prism));
|