use prism-tomorrow.css
This commit is contained in:
55
docs/_style/prism-master/components/prism-jolie.js
Normal file
55
docs/_style/prism-master/components/prism-jolie.js
Normal file
@ -0,0 +1,55 @@
|
||||
Prism.languages.jolie = Prism.languages.extend('clike', {
|
||||
'keyword': /\b(?:include|define|is_defined|undef|main|init|outputPort|inputPort|Location|Protocol|Interfaces|RequestResponse|OneWay|type|interface|extender|throws|cset|csets|forward|Aggregates|Redirects|embedded|courier|execution|sequential|concurrent|single|scope|install|throw|comp|cH|default|global|linkIn|linkOut|synchronized|this|new|for|if|else|while|in|Jolie|Java|Javascript|nullProcess|spawn|constants|with|provide|until|exit|foreach|instanceof|over|service)\b/,
|
||||
'builtin': /\b(?:undefined|string|int|void|long|Byte|bool|double|float|char|any)\b/,
|
||||
'number': /(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?l?/i,
|
||||
'operator': /-[-=>]?|\+[+=]?|<[<=]?|[>=*!]=?|&&|\|\||[:?\/%^]/,
|
||||
'symbol': /[|;@]/,
|
||||
'punctuation': /[,.]/,
|
||||
'string': {
|
||||
pattern: /(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||||
greedy: true
|
||||
}
|
||||
});
|
||||
|
||||
delete Prism.languages.jolie['class-name'];
|
||||
|
||||
Prism.languages.insertBefore( 'jolie', 'keyword', {
|
||||
'function':
|
||||
{
|
||||
pattern: /((?:\b(?:outputPort|inputPort|in|service|courier)\b|@)\s*)\w+/,
|
||||
lookbehind: true
|
||||
},
|
||||
'aggregates': {
|
||||
pattern: /(\bAggregates\s*:\s*)(?:\w+(?:\s+with\s+\w+)?\s*,\s*)*\w+(?:\s+with\s+\w+)?/,
|
||||
lookbehind: true,
|
||||
inside: {
|
||||
'withExtension': {
|
||||
pattern: /\bwith\s+\w+/,
|
||||
inside: {
|
||||
'keyword' : /\bwith\b/
|
||||
}
|
||||
},
|
||||
'function': {
|
||||
pattern: /\w+/
|
||||
},
|
||||
'punctuation': {
|
||||
pattern: /,/
|
||||
}
|
||||
}
|
||||
},
|
||||
'redirects': {
|
||||
pattern: /(\bRedirects\s*:\s*)(?:\w+\s*=>\s*\w+\s*,\s*)*(?:\w+\s*=>\s*\w+)/,
|
||||
lookbehind: true,
|
||||
inside: {
|
||||
'punctuation': {
|
||||
pattern: /,/
|
||||
},
|
||||
'function': {
|
||||
pattern: /\w+/
|
||||
},
|
||||
'symbol': {
|
||||
pattern: /=>/
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user