6654 lines
283 KiB
JavaScript
6654 lines
283 KiB
JavaScript
/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+abap+actionscript+ada+apacheconf+apl+applescript+asciidoc+aspnet+autoit+autohotkey+bash+basic+batch+c+brainfuck+bro+bison+csharp+cpp+coffeescript+ruby+css-extras+d+dart+django+diff+docker+eiffel+elixir+erlang+fsharp+fortran+gherkin+git+glsl+go+graphql+groovy+haml+handlebars+haskell+haxe+http+icon+inform7+ini+j+jade+java+jolie+json+julia+keyman+kotlin+latex+less+livescript+lolcode+lua+makefile+markdown+matlab+mel+mizar+monkey+nasm+nginx+nim+nix+nsis+objectivec+ocaml+oz+parigp+parser+pascal+perl+php+php-extras+powershell+processing+prolog+properties+protobuf+puppet+pure+python+q+qore+r+jsx+reason+rest+rip+roboconf+crystal+rust+sas+sass+scss+scala+scheme+smalltalk+smarty+sql+stylus+swift+tcl+textile+twig+typescript+vbnet+verilog+vhdl+vim+wiki+xojo+yaml */
|
||
var _self = (typeof window !== 'undefined')
|
||
? window // if in browser
|
||
: (
|
||
(typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope)
|
||
? self // if in worker
|
||
: {} // if in node js
|
||
);
|
||
|
||
/**
|
||
* Prism: Lightweight, robust, elegant syntax highlighting
|
||
* MIT license http://www.opensource.org/licenses/mit-license.php/
|
||
* @author Lea Verou http://lea.verou.me
|
||
*/
|
||
|
||
var Prism = (function(){
|
||
|
||
// Private helper vars
|
||
var lang = /\blang(?:uage)?-(\w+)\b/i;
|
||
var uniqueId = 0;
|
||
|
||
var _ = _self.Prism = {
|
||
manual: _self.Prism && _self.Prism.manual,
|
||
util: {
|
||
encode: function (tokens) {
|
||
if (tokens instanceof Token) {
|
||
return new Token(tokens.type, _.util.encode(tokens.content), tokens.alias);
|
||
} else if (_.util.type(tokens) === 'Array') {
|
||
return tokens.map(_.util.encode);
|
||
} else {
|
||
return tokens.replace(/&/g, '&').replace(/</g, '<').replace(/\u00a0/g, ' ');
|
||
}
|
||
},
|
||
|
||
type: function (o) {
|
||
return Object.prototype.toString.call(o).match(/\[object (\w+)\]/)[1];
|
||
},
|
||
|
||
objId: function (obj) {
|
||
if (!obj['__id']) {
|
||
Object.defineProperty(obj, '__id', { value: ++uniqueId });
|
||
}
|
||
return obj['__id'];
|
||
},
|
||
|
||
// Deep clone a language definition (e.g. to extend it)
|
||
clone: function (o) {
|
||
var type = _.util.type(o);
|
||
|
||
switch (type) {
|
||
case 'Object':
|
||
var clone = {};
|
||
|
||
for (var key in o) {
|
||
if (o.hasOwnProperty(key)) {
|
||
clone[key] = _.util.clone(o[key]);
|
||
}
|
||
}
|
||
|
||
return clone;
|
||
|
||
case 'Array':
|
||
// Check for existence for IE8
|
||
return o.map && o.map(function(v) { return _.util.clone(v); });
|
||
}
|
||
|
||
return o;
|
||
}
|
||
},
|
||
|
||
languages: {
|
||
extend: function (id, redef) {
|
||
var lang = _.util.clone(_.languages[id]);
|
||
|
||
for (var key in redef) {
|
||
lang[key] = redef[key];
|
||
}
|
||
|
||
return lang;
|
||
},
|
||
|
||
/**
|
||
* Insert a token before another token in a language literal
|
||
* As this needs to recreate the object (we cannot actually insert before keys in object literals),
|
||
* we cannot just provide an object, we need anobject and a key.
|
||
* @param inside The key (or language id) of the parent
|
||
* @param before The key to insert before. If not provided, the function appends instead.
|
||
* @param insert Object with the key/value pairs to insert
|
||
* @param root The object that contains `inside`. If equal to Prism.languages, it can be omitted.
|
||
*/
|
||
insertBefore: function (inside, before, insert, root) {
|
||
root = root || _.languages;
|
||
var grammar = root[inside];
|
||
|
||
if (arguments.length == 2) {
|
||
insert = arguments[1];
|
||
|
||
for (var newToken in insert) {
|
||
if (insert.hasOwnProperty(newToken)) {
|
||
grammar[newToken] = insert[newToken];
|
||
}
|
||
}
|
||
|
||
return grammar;
|
||
}
|
||
|
||
var ret = {};
|
||
|
||
for (var token in grammar) {
|
||
|
||
if (grammar.hasOwnProperty(token)) {
|
||
|
||
if (token == before) {
|
||
|
||
for (var newToken in insert) {
|
||
|
||
if (insert.hasOwnProperty(newToken)) {
|
||
ret[newToken] = insert[newToken];
|
||
}
|
||
}
|
||
}
|
||
|
||
ret[token] = grammar[token];
|
||
}
|
||
}
|
||
|
||
// Update references in other language definitions
|
||
_.languages.DFS(_.languages, function(key, value) {
|
||
if (value === root[inside] && key != inside) {
|
||
this[key] = ret;
|
||
}
|
||
});
|
||
|
||
return root[inside] = ret;
|
||
},
|
||
|
||
// Traverse a language definition with Depth First Search
|
||
DFS: function(o, callback, type, visited) {
|
||
visited = visited || {};
|
||
for (var i in o) {
|
||
if (o.hasOwnProperty(i)) {
|
||
callback.call(o, i, o[i], type || i);
|
||
|
||
if (_.util.type(o[i]) === 'Object' && !visited[_.util.objId(o[i])]) {
|
||
visited[_.util.objId(o[i])] = true;
|
||
_.languages.DFS(o[i], callback, null, visited);
|
||
}
|
||
else if (_.util.type(o[i]) === 'Array' && !visited[_.util.objId(o[i])]) {
|
||
visited[_.util.objId(o[i])] = true;
|
||
_.languages.DFS(o[i], callback, i, visited);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
plugins: {},
|
||
|
||
highlightAll: function(async, callback) {
|
||
var env = {
|
||
callback: callback,
|
||
selector: 'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'
|
||
};
|
||
|
||
_.hooks.run("before-highlightall", env);
|
||
|
||
var elements = env.elements || document.querySelectorAll(env.selector);
|
||
|
||
for (var i=0, element; element = elements[i++];) {
|
||
_.highlightElement(element, async === true, env.callback);
|
||
}
|
||
},
|
||
|
||
highlightElement: function(element, async, callback) {
|
||
// Find language
|
||
var language, grammar, parent = element;
|
||
|
||
while (parent && !lang.test(parent.className)) {
|
||
parent = parent.parentNode;
|
||
}
|
||
|
||
if (parent) {
|
||
language = (parent.className.match(lang) || [,''])[1].toLowerCase();
|
||
grammar = _.languages[language];
|
||
}
|
||
|
||
// Set language on the element, if not present
|
||
element.className = element.className.replace(lang, '').replace(/\s+/g, ' ') + ' language-' + language;
|
||
|
||
// Set language on the parent, for styling
|
||
parent = element.parentNode;
|
||
|
||
if (/pre/i.test(parent.nodeName)) {
|
||
parent.className = parent.className.replace(lang, '').replace(/\s+/g, ' ') + ' language-' + language;
|
||
}
|
||
|
||
var code = element.textContent;
|
||
|
||
var env = {
|
||
element: element,
|
||
language: language,
|
||
grammar: grammar,
|
||
code: code
|
||
};
|
||
|
||
_.hooks.run('before-sanity-check', env);
|
||
|
||
if (!env.code || !env.grammar) {
|
||
if (env.code) {
|
||
_.hooks.run('before-highlight', env);
|
||
env.element.textContent = env.code;
|
||
_.hooks.run('after-highlight', env);
|
||
}
|
||
_.hooks.run('complete', env);
|
||
return;
|
||
}
|
||
|
||
_.hooks.run('before-highlight', env);
|
||
|
||
if (async && _self.Worker) {
|
||
var worker = new Worker(_.filename);
|
||
|
||
worker.onmessage = function(evt) {
|
||
env.highlightedCode = evt.data;
|
||
|
||
_.hooks.run('before-insert', env);
|
||
|
||
env.element.innerHTML = env.highlightedCode;
|
||
|
||
callback && callback.call(env.element);
|
||
_.hooks.run('after-highlight', env);
|
||
_.hooks.run('complete', env);
|
||
};
|
||
|
||
worker.postMessage(JSON.stringify({
|
||
language: env.language,
|
||
code: env.code,
|
||
immediateClose: true
|
||
}));
|
||
}
|
||
else {
|
||
env.highlightedCode = _.highlight(env.code, env.grammar, env.language);
|
||
|
||
_.hooks.run('before-insert', env);
|
||
|
||
env.element.innerHTML = env.highlightedCode;
|
||
|
||
callback && callback.call(element);
|
||
|
||
_.hooks.run('after-highlight', env);
|
||
_.hooks.run('complete', env);
|
||
}
|
||
},
|
||
|
||
highlight: function (text, grammar, language) {
|
||
var tokens = _.tokenize(text, grammar);
|
||
return Token.stringify(_.util.encode(tokens), language);
|
||
},
|
||
|
||
matchGrammar: function (text, strarr, grammar, index, startPos, oneshot, target) {
|
||
var Token = _.Token;
|
||
|
||
for (var token in grammar) {
|
||
if(!grammar.hasOwnProperty(token) || !grammar[token]) {
|
||
continue;
|
||
}
|
||
|
||
if (token == target) {
|
||
return;
|
||
}
|
||
|
||
var patterns = grammar[token];
|
||
patterns = (_.util.type(patterns) === "Array") ? patterns : [patterns];
|
||
|
||
for (var j = 0; j < patterns.length; ++j) {
|
||
var pattern = patterns[j],
|
||
inside = pattern.inside,
|
||
lookbehind = !!pattern.lookbehind,
|
||
greedy = !!pattern.greedy,
|
||
lookbehindLength = 0,
|
||
alias = pattern.alias;
|
||
|
||
if (greedy && !pattern.pattern.global) {
|
||
// Without the global flag, lastIndex won't work
|
||
var flags = pattern.pattern.toString().match(/[imuy]*$/)[0];
|
||
pattern.pattern = RegExp(pattern.pattern.source, flags + "g");
|
||
}
|
||
|
||
pattern = pattern.pattern || pattern;
|
||
|
||
// Don’t cache length as it changes during the loop
|
||
for (var i = index, pos = startPos; i < strarr.length; pos += strarr[i].length, ++i) {
|
||
|
||
var str = strarr[i];
|
||
|
||
if (strarr.length > text.length) {
|
||
// Something went terribly wrong, ABORT, ABORT!
|
||
return;
|
||
}
|
||
|
||
if (str instanceof Token) {
|
||
continue;
|
||
}
|
||
|
||
pattern.lastIndex = 0;
|
||
|
||
var match = pattern.exec(str),
|
||
delNum = 1;
|
||
|
||
// Greedy patterns can override/remove up to two previously matched tokens
|
||
if (!match && greedy && i != strarr.length - 1) {
|
||
pattern.lastIndex = pos;
|
||
match = pattern.exec(text);
|
||
if (!match) {
|
||
break;
|
||
}
|
||
|
||
var from = match.index + (lookbehind ? match[1].length : 0),
|
||
to = match.index + match[0].length,
|
||
k = i,
|
||
p = pos;
|
||
|
||
for (var len = strarr.length; k < len && (p < to || (!strarr[k].type && !strarr[k - 1].greedy)); ++k) {
|
||
p += strarr[k].length;
|
||
// Move the index i to the element in strarr that is closest to from
|
||
if (from >= p) {
|
||
++i;
|
||
pos = p;
|
||
}
|
||
}
|
||
|
||
/*
|
||
* If strarr[i] is a Token, then the match starts inside another Token, which is invalid
|
||
* If strarr[k - 1] is greedy we are in conflict with another greedy pattern
|
||
*/
|
||
if (strarr[i] instanceof Token || strarr[k - 1].greedy) {
|
||
continue;
|
||
}
|
||
|
||
// Number of tokens to delete and replace with the new match
|
||
delNum = k - i;
|
||
str = text.slice(pos, p);
|
||
match.index -= pos;
|
||
}
|
||
|
||
if (!match) {
|
||
if (oneshot) {
|
||
break;
|
||
}
|
||
|
||
continue;
|
||
}
|
||
|
||
if(lookbehind) {
|
||
lookbehindLength = match[1].length;
|
||
}
|
||
|
||
var from = match.index + lookbehindLength,
|
||
match = match[0].slice(lookbehindLength),
|
||
to = from + match.length,
|
||
before = str.slice(0, from),
|
||
after = str.slice(to);
|
||
|
||
var args = [i, delNum];
|
||
|
||
if (before) {
|
||
++i;
|
||
pos += before.length;
|
||
args.push(before);
|
||
}
|
||
|
||
var wrapped = new Token(token, inside? _.tokenize(match, inside) : match, alias, match, greedy);
|
||
|
||
args.push(wrapped);
|
||
|
||
if (after) {
|
||
args.push(after);
|
||
}
|
||
|
||
Array.prototype.splice.apply(strarr, args);
|
||
|
||
if (delNum != 1)
|
||
_.matchGrammar(text, strarr, grammar, i, pos, true, token);
|
||
|
||
if (oneshot)
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
},
|
||
|
||
tokenize: function(text, grammar, language) {
|
||
var strarr = [text];
|
||
|
||
var rest = grammar.rest;
|
||
|
||
if (rest) {
|
||
for (var token in rest) {
|
||
grammar[token] = rest[token];
|
||
}
|
||
|
||
delete grammar.rest;
|
||
}
|
||
|
||
_.matchGrammar(text, strarr, grammar, 0, 0, false);
|
||
|
||
return strarr;
|
||
},
|
||
|
||
hooks: {
|
||
all: {},
|
||
|
||
add: function (name, callback) {
|
||
var hooks = _.hooks.all;
|
||
|
||
hooks[name] = hooks[name] || [];
|
||
|
||
hooks[name].push(callback);
|
||
},
|
||
|
||
run: function (name, env) {
|
||
var callbacks = _.hooks.all[name];
|
||
|
||
if (!callbacks || !callbacks.length) {
|
||
return;
|
||
}
|
||
|
||
for (var i=0, callback; callback = callbacks[i++];) {
|
||
callback(env);
|
||
}
|
||
}
|
||
}
|
||
};
|
||
|
||
var Token = _.Token = function(type, content, alias, matchedStr, greedy) {
|
||
this.type = type;
|
||
this.content = content;
|
||
this.alias = alias;
|
||
// Copy of the full string this token was created from
|
||
this.length = (matchedStr || "").length|0;
|
||
this.greedy = !!greedy;
|
||
};
|
||
|
||
Token.stringify = function(o, language, parent) {
|
||
if (typeof o == 'string') {
|
||
return o;
|
||
}
|
||
|
||
if (_.util.type(o) === 'Array') {
|
||
return o.map(function(element) {
|
||
return Token.stringify(element, language, o);
|
||
}).join('');
|
||
}
|
||
|
||
var env = {
|
||
type: o.type,
|
||
content: Token.stringify(o.content, language, parent),
|
||
tag: 'span',
|
||
classes: ['token', o.type],
|
||
attributes: {},
|
||
language: language,
|
||
parent: parent
|
||
};
|
||
|
||
if (env.type == 'comment') {
|
||
env.attributes['spellcheck'] = 'true';
|
||
}
|
||
|
||
if (o.alias) {
|
||
var aliases = _.util.type(o.alias) === 'Array' ? o.alias : [o.alias];
|
||
Array.prototype.push.apply(env.classes, aliases);
|
||
}
|
||
|
||
_.hooks.run('wrap', env);
|
||
|
||
var attributes = Object.keys(env.attributes).map(function(name) {
|
||
return name + '="' + (env.attributes[name] || '').replace(/"/g, '"') + '"';
|
||
}).join(' ');
|
||
|
||
return '<' + env.tag + ' class="' + env.classes.join(' ') + '"' + (attributes ? ' ' + attributes : '') + '>' + env.content + '</' + env.tag + '>';
|
||
|
||
};
|
||
|
||
if (!_self.document) {
|
||
if (!_self.addEventListener) {
|
||
// in Node.js
|
||
return _self.Prism;
|
||
}
|
||
// In worker
|
||
_self.addEventListener('message', function(evt) {
|
||
var message = JSON.parse(evt.data),
|
||
lang = message.language,
|
||
code = message.code,
|
||
immediateClose = message.immediateClose;
|
||
|
||
_self.postMessage(_.highlight(code, _.languages[lang], lang));
|
||
if (immediateClose) {
|
||
_self.close();
|
||
}
|
||
}, false);
|
||
|
||
return _self.Prism;
|
||
}
|
||
|
||
//Get current script and highlight
|
||
var script = document.currentScript || [].slice.call(document.getElementsByTagName("script")).pop();
|
||
|
||
if (script) {
|
||
_.filename = script.src;
|
||
|
||
if (document.addEventListener && !_.manual && !script.hasAttribute('data-manual')) {
|
||
if(document.readyState !== "loading") {
|
||
if (window.requestAnimationFrame) {
|
||
window.requestAnimationFrame(_.highlightAll);
|
||
} else {
|
||
window.setTimeout(_.highlightAll, 16);
|
||
}
|
||
}
|
||
else {
|
||
document.addEventListener('DOMContentLoaded', _.highlightAll);
|
||
}
|
||
}
|
||
}
|
||
|
||
return _self.Prism;
|
||
|
||
})();
|
||
|
||
if (typeof module !== 'undefined' && module.exports) {
|
||
module.exports = Prism;
|
||
}
|
||
|
||
// hack for components to work correctly in node.js
|
||
if (typeof global !== 'undefined') {
|
||
global.Prism = Prism;
|
||
}
|
||
;
|
||
Prism.languages.markup = {
|
||
'comment': /<!--[\s\S]*?-->/,
|
||
'prolog': /<\?[\s\S]+?\?>/,
|
||
'doctype': /<!DOCTYPE[\s\S]+?>/i,
|
||
'cdata': /<!\[CDATA\[[\s\S]*?]]>/i,
|
||
'tag': {
|
||
pattern: /<\/?(?!\d)[^\s>\/=$<]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\s\S])*\1|[^\s'">=]+))?)*\s*\/?>/i,
|
||
inside: {
|
||
'tag': {
|
||
pattern: /^<\/?[^\s>\/]+/i,
|
||
inside: {
|
||
'punctuation': /^<\/?/,
|
||
'namespace': /^[^\s>\/:]+:/
|
||
}
|
||
},
|
||
'attr-value': {
|
||
pattern: /=(?:('|")[\s\S]*?(\1)|[^\s>]+)/i,
|
||
inside: {
|
||
'punctuation': /[=>"']/
|
||
}
|
||
},
|
||
'punctuation': /\/?>/,
|
||
'attr-name': {
|
||
pattern: /[^\s>\/]+/,
|
||
inside: {
|
||
'namespace': /^[^\s>\/:]+:/
|
||
}
|
||
}
|
||
|
||
}
|
||
},
|
||
'entity': /&#?[\da-z]{1,8};/i
|
||
};
|
||
|
||
// Plugin to make entity title show the real entity, idea by Roman Komarov
|
||
Prism.hooks.add('wrap', function(env) {
|
||
|
||
if (env.type === 'entity') {
|
||
env.attributes['title'] = env.content.replace(/&/, '&');
|
||
}
|
||
});
|
||
|
||
Prism.languages.xml = Prism.languages.markup;
|
||
Prism.languages.html = Prism.languages.markup;
|
||
Prism.languages.mathml = Prism.languages.markup;
|
||
Prism.languages.svg = Prism.languages.markup;
|
||
|
||
Prism.languages.css = {
|
||
'comment': /\/\*[\s\S]*?\*\//,
|
||
'atrule': {
|
||
pattern: /@[\w-]+?.*?(;|(?=\s*\{))/i,
|
||
inside: {
|
||
'rule': /@[\w-]+/
|
||
// See rest below
|
||
}
|
||
},
|
||
'url': /url\((?:(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,
|
||
'selector': /[^\{\}\s][^\{\};]*?(?=\s*\{)/,
|
||
'string': {
|
||
pattern: /("|')(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||
greedy: true
|
||
},
|
||
'property': /(\b|\B)[\w-]+(?=\s*:)/i,
|
||
'important': /\B!important\b/i,
|
||
'function': /[-a-z0-9]+(?=\()/i,
|
||
'punctuation': /[(){};:]/
|
||
};
|
||
|
||
Prism.languages.css['atrule'].inside.rest = Prism.util.clone(Prism.languages.css);
|
||
|
||
if (Prism.languages.markup) {
|
||
Prism.languages.insertBefore('markup', 'tag', {
|
||
'style': {
|
||
pattern: /(<style[\s\S]*?>)[\s\S]*?(?=<\/style>)/i,
|
||
lookbehind: true,
|
||
inside: Prism.languages.css,
|
||
alias: 'language-css'
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('inside', 'attr-value', {
|
||
'style-attr': {
|
||
pattern: /\s*style=("|').*?\1/i,
|
||
inside: {
|
||
'attr-name': {
|
||
pattern: /^\s*style/i,
|
||
inside: Prism.languages.markup.tag.inside
|
||
},
|
||
'punctuation': /^\s*=\s*['"]|['"]\s*$/,
|
||
'attr-value': {
|
||
pattern: /.+/i,
|
||
inside: Prism.languages.css
|
||
}
|
||
},
|
||
alias: 'language-css'
|
||
}
|
||
}, Prism.languages.markup.tag);
|
||
};
|
||
Prism.languages.clike = {
|
||
'comment': [
|
||
{
|
||
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(^|[^\\:])\/\/.*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'string': {
|
||
pattern: /(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||
greedy: true
|
||
},
|
||
'class-name': {
|
||
pattern: /((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,
|
||
lookbehind: true,
|
||
inside: {
|
||
punctuation: /(\.|\\)/
|
||
}
|
||
},
|
||
'keyword': /\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,
|
||
'boolean': /\b(true|false)\b/,
|
||
'function': /[a-z0-9_]+(?=\()/i,
|
||
'number': /\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,
|
||
'operator': /--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,
|
||
'punctuation': /[{}[\];(),.:]/
|
||
};
|
||
|
||
Prism.languages.javascript = Prism.languages.extend('clike', {
|
||
'keyword': /\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,
|
||
'number': /\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,
|
||
// Allow for all non-ASCII characters (See http://stackoverflow.com/a/2008444)
|
||
'function': /[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i,
|
||
'operator': /-[-=]?|\+[+=]?|!=?=?|<<?=?|>>?>?=?|=(?:==?|>)?|&[&=]?|\|[|=]?|\*\*?=?|\/=?|~|\^=?|%=?|\?|\.{3}/
|
||
});
|
||
|
||
Prism.languages.insertBefore('javascript', 'keyword', {
|
||
'regex': {
|
||
pattern: /(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('javascript', 'string', {
|
||
'template-string': {
|
||
pattern: /`(?:\\\\|\\?[^\\])*?`/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': {
|
||
pattern: /\$\{[^}]+\}/,
|
||
inside: {
|
||
'interpolation-punctuation': {
|
||
pattern: /^\$\{|\}$/,
|
||
alias: 'punctuation'
|
||
},
|
||
rest: Prism.languages.javascript
|
||
}
|
||
},
|
||
'string': /[\s\S]+/
|
||
}
|
||
}
|
||
});
|
||
|
||
if (Prism.languages.markup) {
|
||
Prism.languages.insertBefore('markup', 'tag', {
|
||
'script': {
|
||
pattern: /(<script[\s\S]*?>)[\s\S]*?(?=<\/script>)/i,
|
||
lookbehind: true,
|
||
inside: Prism.languages.javascript,
|
||
alias: 'language-javascript'
|
||
}
|
||
});
|
||
}
|
||
|
||
Prism.languages.js = Prism.languages.javascript;
|
||
Prism.languages.abap = {
|
||
'comment': /^\*.*/m,
|
||
'string' : /(`|')(\\?.)*?\1/m,
|
||
'string-template': {
|
||
pattern: /(\||\})(\\?.)*?(?=\||\{)/,
|
||
lookbehind: true,
|
||
alias: 'string'
|
||
},
|
||
/* End Of Line comments should not interfere with strings when the
|
||
quote character occurs within them. We assume a string being highlighted
|
||
inside an EOL comment is more acceptable than the opposite.
|
||
*/
|
||
'eol-comment': {
|
||
pattern: /(^|\s)".*/m,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
},
|
||
'keyword' : {
|
||
pattern: /(\s|\.|^)(?:SCIENTIFIC_WITH_LEADING_ZERO|SCALE_PRESERVING_SCIENTIFIC|RMC_COMMUNICATION_FAILURE|END-ENHANCEMENT-SECTION|MULTIPLY-CORRESPONDING|SUBTRACT-CORRESPONDING|VERIFICATION-MESSAGE|DIVIDE-CORRESPONDING|ENHANCEMENT-SECTION|CURRENCY_CONVERSION|RMC_SYSTEM_FAILURE|START-OF-SELECTION|MOVE-CORRESPONDING|RMC_INVALID_STATUS|CUSTOMER-FUNCTION|END-OF-DEFINITION|ENHANCEMENT-POINT|SYSTEM-EXCEPTIONS|ADD-CORRESPONDING|SCALE_PRESERVING|SELECTION-SCREEN|CURSOR-SELECTION|END-OF-SELECTION|LOAD-OF-PROGRAM|SCROLL-BOUNDARY|SELECTION-TABLE|EXCEPTION-TABLE|IMPLEMENTATIONS|PARAMETER-TABLE|RIGHT-JUSTIFIED|UNIT_CONVERSION|AUTHORITY-CHECK|LIST-PROCESSING|SIGN_AS_POSTFIX|COL_BACKGROUND|IMPLEMENTATION|INTERFACE-POOL|TRANSFORMATION|IDENTIFICATION|ENDENHANCEMENT|LINE-SELECTION|INITIALIZATION|LEFT-JUSTIFIED|SELECT-OPTIONS|SELECTION-SETS|COMMUNICATION|CORRESPONDING|DECIMAL_SHIFT|PRINT-CONTROL|VALUE-REQUEST|CHAIN-REQUEST|FUNCTION-POOL|FIELD-SYMBOLS|FUNCTIONALITY|INVERTED-DATE|SELECTION-SET|CLASS-METHODS|OUTPUT-LENGTH|CLASS-CODING|COL_NEGATIVE|ERRORMESSAGE|FIELD-GROUPS|HELP-REQUEST|NO-EXTENSION|NO-TOPOFPAGE|REDEFINITION|DISPLAY-MODE|ENDINTERFACE|EXIT-COMMAND|FIELD-SYMBOL|NO-SCROLLING|SHORTDUMP-ID|ACCESSPOLICY|CLASS-EVENTS|COL_POSITIVE|DECLARATIONS|ENHANCEMENTS|FILTER-TABLE|SWITCHSTATES|SYNTAX-CHECK|TRANSPORTING|ASYNCHRONOUS|SYNTAX-TRACE|TOKENIZATION|USER-COMMAND|WITH-HEADING|ABAP-SOURCE|BREAK-POINT|CHAIN-INPUT|COMPRESSION|FIXED-POINT|NEW-SECTION|NON-UNICODE|OCCURRENCES|RESPONSIBLE|SYSTEM-CALL|TRACE-TABLE|ABBREVIATED|CHAR-TO-HEX|END-OF-FILE|ENDFUNCTION|ENVIRONMENT|ASSOCIATION|COL_HEADING|EDITOR-CALL|END-OF-PAGE|ENGINEERING|IMPLEMENTED|INTENSIFIED|RADIOBUTTON|SYSTEM-EXIT|TOP-OF-PAGE|TRANSACTION|APPLICATION|CONCATENATE|DESTINATION|ENHANCEMENT|IMMEDIATELY|NO-GROUPING|PRECOMPILED|REPLACEMENT|TITLE-LINES|ACTIVATION|BYTE-ORDER|CLASS-POOL|CONNECTION|CONVERSION|DEFINITION|DEPARTMENT|EXPIRATION|INHERITING|MESSAGE-ID|NO-HEADING|PERFORMING|QUEUE-ONLY|RIGHTSPACE|SCIENTIFIC|STATUSINFO|STRUCTURES|SYNCPOINTS|WITH-TITLE|ATTRIBUTES|BOUNDARIES|CLASS-DATA|COL_NORMAL|DD\/MM\/YYYY|DESCENDING|INTERFACES|LINE-COUNT|MM\/DD\/YYYY|NON-UNIQUE|PRESERVING|SELECTIONS|STATEMENTS|SUBROUTINE|TRUNCATION|TYPE-POOLS|ARITHMETIC|BACKGROUND|ENDPROVIDE|EXCEPTIONS|IDENTIFIER|INDEX-LINE|OBLIGATORY|PARAMETERS|PERCENTAGE|PUSHBUTTON|RESOLUTION|COMPONENTS|DEALLOCATE|DISCONNECT|DUPLICATES|FIRST-LINE|HEAD-LINES|NO-DISPLAY|OCCURRENCE|RESPECTING|RETURNCODE|SUBMATCHES|TRACE-FILE|ASCENDING|BYPASSING|ENDMODULE|EXCEPTION|EXCLUDING|EXPORTING|INCREMENT|MATCHCODE|PARAMETER|PARTIALLY|PREFERRED|REFERENCE|REPLACING|RETURNING|SELECTION|SEPARATED|SPECIFIED|STATEMENT|TIMESTAMP|TYPE-POOL|ACCEPTING|APPENDAGE|ASSIGNING|COL_GROUP|COMPARING|CONSTANTS|DANGEROUS|IMPORTING|INSTANCES|LEFTSPACE|LOG-POINT|QUICKINFO|READ-ONLY|SCROLLING|SQLSCRIPT|STEP-LOOP|TOP-LINES|TRANSLATE|APPENDING|AUTHORITY|CHARACTER|COMPONENT|CONDITION|DIRECTORY|DUPLICATE|MESSAGING|RECEIVING|SUBSCREEN|ACCORDING|COL_TOTAL|END-LINES|ENDMETHOD|ENDSELECT|EXPANDING|EXTENSION|INCLUDING|INFOTYPES|INTERFACE|INTERVALS|LINE-SIZE|PF-STATUS|PROCEDURE|PROTECTED|REQUESTED|RESUMABLE|RIGHTPLUS|SAP-SPOOL|SECONDARY|STRUCTURE|SUBSTRING|TABLEVIEW|NUMOFCHAR|ADJACENT|ANALYSIS|ASSIGNED|BACKWARD|CHANNELS|CHECKBOX|CONTINUE|CRITICAL|DATAINFO|DD\/MM\/YY|DURATION|ENCODING|ENDCLASS|FUNCTION|LEFTPLUS|LINEFEED|MM\/DD\/YY|OVERFLOW|RECEIVED|SKIPPING|SORTABLE|STANDARD|SUBTRACT|SUPPRESS|TABSTRIP|TITLEBAR|TRUNCATE|UNASSIGN|WHENEVER|ANALYZER|COALESCE|COMMENTS|CONDENSE|DECIMALS|DEFERRED|ENDWHILE|EXPLICIT|KEYWORDS|MESSAGES|POSITION|PRIORITY|RECEIVER|RENAMING|TIMEZONE|TRAILING|ALLOCATE|CENTERED|CIRCULAR|CONTROLS|CURRENCY|DELETING|DESCRIBE|DISTANCE|ENDCATCH|EXPONENT|EXTENDED|GENERATE|IGNORING|INCLUDES|INTERNAL|MAJOR-ID|MODIFIER|NEW-LINE|OPTIONAL|PROPERTY|ROLLBACK|STARTING|SUPPLIED|ABSTRACT|CHANGING|CONTEXTS|CREATING|CUSTOMER|DATABASE|DAYLIGHT|DEFINING|DISTINCT|DIVISION|ENABLING|ENDCHAIN|ESCAPING|HARMLESS|IMPLICIT|INACTIVE|LANGUAGE|MINOR-ID|MULTIPLY|NEW-PAGE|NO-TITLE|POS_HIGH|SEPARATE|TEXTPOOL|TRANSFER|SELECTOR|DBMAXLEN|ITERATOR|SELECTOR|ARCHIVE|BIT-XOR|BYTE-CO|COLLECT|COMMENT|CURRENT|DEFAULT|DISPLAY|ENDFORM|EXTRACT|LEADING|LISTBOX|LOCATOR|MEMBERS|METHODS|NESTING|POS_LOW|PROCESS|PROVIDE|RAISING|RESERVE|SECONDS|SUMMARY|VISIBLE|BETWEEN|BIT-AND|BYTE-CS|CLEANUP|COMPUTE|CONTROL|CONVERT|DATASET|ENDCASE|FORWARD|HEADERS|HOTSPOT|INCLUDE|INVERSE|KEEPING|NO-ZERO|OBJECTS|OVERLAY|PADDING|PATTERN|PROGRAM|REFRESH|SECTION|SUMMING|TESTING|VERSION|WINDOWS|WITHOUT|BIT-NOT|BYTE-CA|BYTE-NA|CASTING|CONTEXT|COUNTRY|DYNAMIC|ENABLED|ENDLOOP|EXECUTE|FRIENDS|HANDLER|HEADING|INITIAL|\*-INPUT|LOGFILE|MAXIMUM|MINIMUM|NO-GAPS|NO-SIGN|PRAGMAS|PRIMARY|PRIVATE|REDUCED|REPLACE|REQUEST|RESULTS|UNICODE|WARNING|ALIASES|BYTE-CN|BYTE-NS|CALLING|COL_KEY|COLUMNS|CONNECT|ENDEXEC|ENTRIES|EXCLUDE|FILTERS|FURTHER|HELP-ID|LOGICAL|MAPPING|MESSAGE|NAMETAB|OPTIONS|PACKAGE|PERFORM|RECEIVE|STATICS|VARYING|BINDING|CHARLEN|GREATER|XSTRLEN|ACCEPT|APPEND|DETAIL|ELSEIF|ENDING|ENDTRY|FORMAT|FRAMES|GIVING|HASHED|HEADER|IMPORT|INSERT|MARGIN|MODULE|NATIVE|OBJECT|OFFSET|REMOTE|RESUME|SAVING|SIMPLE|SUBMIT|TABBED|TOKENS|UNIQUE|UNPACK|UPDATE|WINDOW|YELLOW|ACTUAL|ASPECT|CENTER|CURSOR|DELETE|DIALOG|DIVIDE|DURING|ERRORS|EVENTS|EXTEND|FILTER|HANDLE|HAVING|IGNORE|LITTLE|MEMORY|NO-GAP|OCCURS|OPTION|PERSON|PLACES|PUBLIC|REDUCE|REPORT|RESULT|SINGLE|SORTED|SWITCH|SYNTAX|TARGET|VALUES|WRITER|ASSERT|BLOCKS|BOUNDS|BUFFER|CHANGE|COLUMN|COMMIT|CONCAT|COPIES|CREATE|DDMMYY|DEFINE|ENDIAN|ESCAPE|EXPAND|KERNEL|LAYOUT|LEGACY|LEVELS|MMDDYY|NUMBER|OUTPUT|RANGES|READER|RETURN|SCREEN|SEARCH|SELECT|SHARED|SOURCE|STABLE|STATIC|SUBKEY|SUFFIX|TABLES|UNWIND|YYMMDD|ASSIGN|BACKUP|BEFORE|BINARY|BIT-OR|BLANKS|CLIENT|CODING|COMMON|DEMAND|DYNPRO|EXCEPT|EXISTS|EXPORT|FIELDS|GLOBAL|GROUPS|LENGTH|LOCALE|MEDIUM|METHOD|MODIFY|NESTED|OTHERS|REJECT|SCROLL|SUPPLY|SYMBOL|ENDFOR|STRLEN|ALIGN|BEGIN|BOUND|ENDAT|ENTRY|EVENT|FINAL|FLUSH|GRANT|INNER|SHORT|USING|WRITE|AFTER|BLACK|BLOCK|CLOCK|COLOR|COUNT|DUMMY|EMPTY|ENDDO|ENDON|GREEN|INDEX|INOUT|LEAVE|LEVEL|LINES|MODIF|ORDER|OUTER|RANGE|RESET|RETRY|RIGHT|SMART|SPLIT|STYLE|TABLE|THROW|UNDER|UNTIL|UPPER|UTF-8|WHERE|ALIAS|BLANK|CLEAR|CLOSE|EXACT|FETCH|FIRST|FOUND|GROUP|LLANG|LOCAL|OTHER|REGEX|SPOOL|TITLE|TYPES|VALID|WHILE|ALPHA|BOXED|CATCH|CHAIN|CHECK|CLASS|COVER|ENDIF|EQUIV|FIELD|FLOOR|FRAME|INPUT|LOWER|MATCH|NODES|PAGES|PRINT|RAISE|ROUND|SHIFT|SPACE|SPOTS|STAMP|STATE|TASKS|TIMES|TRMAC|ULINE|UNION|VALUE|WIDTH|EQUAL|LOG10|TRUNC|BLOB|CASE|CEIL|CLOB|COND|EXIT|FILE|GAPS|HOLD|INCL|INTO|KEEP|KEYS|LAST|LINE|LONG|LPAD|MAIL|MODE|OPEN|PINK|READ|ROWS|TEST|THEN|ZERO|AREA|BACK|BADI|BYTE|CAST|EDIT|EXEC|FAIL|FIND|FKEQ|FONT|FREE|GKEQ|HIDE|INIT|ITNO|LATE|LOOP|MAIN|MARK|MOVE|NEXT|NULL|RISK|ROLE|UNIT|WAIT|ZONE|BASE|CALL|CODE|DATA|DATE|FKGE|GKGE|HIGH|KIND|LEFT|LIST|MASK|MESH|NAME|NODE|PACK|PAGE|POOL|SEND|SIGN|SIZE|SOME|STOP|TASK|TEXT|TIME|USER|VARY|WITH|WORD|BLUE|CONV|COPY|DEEP|ELSE|FORM|FROM|HINT|ICON|JOIN|LIKE|LOAD|ONLY|PART|SCAN|SKIP|SORT|TYPE|UNIX|VIEW|WHEN|WORK|ACOS|ASIN|ATAN|COSH|EACH|FRAC|LESS|RTTI|SINH|SQRT|TANH|AVG|BIT|DIV|ISO|LET|OUT|PAD|SQL|ALL|CI_|CPI|END|LOB|LPI|MAX|MIN|NEW|OLE|RUN|SET|\?TO|YES|ABS|ADD|AND|BIG|FOR|HDB|JOB|LOW|NOT|SAP|TRY|VIA|XML|ANY|GET|IDS|KEY|MOD|OFF|PUT|RAW|RED|REF|SUM|TAB|XSD|CNT|COS|EXP|LOG|SIN|TAN|XOR|AT|CO|CP|DO|GT|ID|IF|NS|OR|BT|CA|CS|GE|NA|NB|EQ|IN|LT|NE|NO|OF|ON|PF|TO|AS|BY|CN|IS|LE|NP|UP|E|I|M|O|Z|C|X)\b/i,
|
||
lookbehind: true
|
||
},
|
||
/* Numbers can be only integers. Decimal or Hex appear only as strings */
|
||
'number' : /\b\d+\b/,
|
||
/* Operators must always be surrounded by whitespace, they cannot be put
|
||
adjacent to operands.
|
||
*/
|
||
'operator' : {
|
||
pattern: /(\s)(?:\*\*?|<[=>]?|>=?|\?=|[-+\/=])(?=\s)/,
|
||
lookbehind: true
|
||
},
|
||
'string-operator' : {
|
||
pattern: /(\s)&&?(?=\s)/,
|
||
lookbehind: true,
|
||
/* The official editor highlights */
|
||
alias: "keyword"
|
||
},
|
||
'token-operator' : [{
|
||
/* Special operators used to access structure components, class methods/attributes, etc. */
|
||
pattern: /(\w)(?:->?|=>|[~|{}])(?=\w)/,
|
||
lookbehind: true,
|
||
alias: "punctuation"
|
||
}, {
|
||
/* Special tokens used do delimit string templates */
|
||
pattern: /[|{}]/,
|
||
alias: "punctuation"
|
||
}],
|
||
'punctuation' : /[,.:()]/
|
||
};
|
||
Prism.languages.actionscript = Prism.languages.extend('javascript', {
|
||
'keyword': /\b(?:as|break|case|catch|class|const|default|delete|do|else|extends|finally|for|function|if|implements|import|in|instanceof|interface|internal|is|native|new|null|package|private|protected|public|return|super|switch|this|throw|try|typeof|use|var|void|while|with|dynamic|each|final|get|include|namespace|native|override|set|static)\b/,
|
||
'operator': /\+\+|--|(?:[+\-*\/%^]|&&?|\|\|?|<<?|>>?>?|[!=]=?)=?|[~?@]/
|
||
});
|
||
Prism.languages.actionscript['class-name'].alias = 'function';
|
||
|
||
if (Prism.languages.markup) {
|
||
Prism.languages.insertBefore('actionscript', 'string', {
|
||
'xml': {
|
||
pattern: /(^|[^.])<\/?\w+(?:\s+[^\s>\/=]+=("|')(?:\\\1|\\?(?!\1)[\s\S])*\2)*\s*\/?>/,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.markup
|
||
}
|
||
}
|
||
});
|
||
};
|
||
Prism.languages.ada = {
|
||
'comment': /--.*/,
|
||
'string': /"(?:""|[^"\r\f\n])*"/i,
|
||
'number': [
|
||
{
|
||
pattern: /\b\d(?:_?\d)*#[0-9A-F](?:_?[0-9A-F])*(?:\.[0-9A-F](?:_?[0-9A-F])*)?#(?:E[+-]?\d(?:_?\d)*)?/i
|
||
},
|
||
{
|
||
pattern: /\b\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:E[+-]?\d(?:_?\d)*)?\b/i
|
||
}
|
||
],
|
||
'attr-name': /\b'\w+/i,
|
||
'keyword': /\b(?:abort|abs|abstract|accept|access|aliased|all|and|array|at|begin|body|case|constant|declare|delay|delta|digits|do|else|new|return|elsif|end|entry|exception|exit|for|function|generic|goto|if|in|interface|is|limited|loop|mod|not|null|of|others|out|overriding|package|pragma|private|procedure|protected|raise|range|record|rem|renames|requeue|reverse|select|separate|some|subtype|synchronized|tagged|task|terminate|then|type|until|use|when|while|with|xor)\b/i,
|
||
'boolean': /\b(?:true|false)\b/i,
|
||
'operator': /<[=>]?|>=?|=>?|:=|\/=?|\*\*?|[&+-]/,
|
||
'punctuation': /\.\.?|[,;():]/,
|
||
'char': /'.'/,
|
||
'variable': /\b[a-z](?:[_a-z\d])*\b/i
|
||
};
|
||
Prism.languages.apacheconf = {
|
||
'comment': /#.*/,
|
||
'directive-inline': {
|
||
pattern: /^(\s*)\b(AcceptFilter|AcceptPathInfo|AccessFileName|Action|AddAlt|AddAltByEncoding|AddAltByType|AddCharset|AddDefaultCharset|AddDescription|AddEncoding|AddHandler|AddIcon|AddIconByEncoding|AddIconByType|AddInputFilter|AddLanguage|AddModuleInfo|AddOutputFilter|AddOutputFilterByType|AddType|Alias|AliasMatch|Allow|AllowCONNECT|AllowEncodedSlashes|AllowMethods|AllowOverride|AllowOverrideList|Anonymous|Anonymous_LogEmail|Anonymous_MustGiveEmail|Anonymous_NoUserID|Anonymous_VerifyEmail|AsyncRequestWorkerFactor|AuthBasicAuthoritative|AuthBasicFake|AuthBasicProvider|AuthBasicUseDigestAlgorithm|AuthDBDUserPWQuery|AuthDBDUserRealmQuery|AuthDBMGroupFile|AuthDBMType|AuthDBMUserFile|AuthDigestAlgorithm|AuthDigestDomain|AuthDigestNonceLifetime|AuthDigestProvider|AuthDigestQop|AuthDigestShmemSize|AuthFormAuthoritative|AuthFormBody|AuthFormDisableNoStore|AuthFormFakeBasicAuth|AuthFormLocation|AuthFormLoginRequiredLocation|AuthFormLoginSuccessLocation|AuthFormLogoutLocation|AuthFormMethod|AuthFormMimetype|AuthFormPassword|AuthFormProvider|AuthFormSitePassphrase|AuthFormSize|AuthFormUsername|AuthGroupFile|AuthLDAPAuthorizePrefix|AuthLDAPBindAuthoritative|AuthLDAPBindDN|AuthLDAPBindPassword|AuthLDAPCharsetConfig|AuthLDAPCompareAsUser|AuthLDAPCompareDNOnServer|AuthLDAPDereferenceAliases|AuthLDAPGroupAttribute|AuthLDAPGroupAttributeIsDN|AuthLDAPInitialBindAsUser|AuthLDAPInitialBindPattern|AuthLDAPMaxSubGroupDepth|AuthLDAPRemoteUserAttribute|AuthLDAPRemoteUserIsDN|AuthLDAPSearchAsUser|AuthLDAPSubGroupAttribute|AuthLDAPSubGroupClass|AuthLDAPUrl|AuthMerging|AuthName|AuthnCacheContext|AuthnCacheEnable|AuthnCacheProvideFor|AuthnCacheSOCache|AuthnCacheTimeout|AuthnzFcgiCheckAuthnProvider|AuthnzFcgiDefineProvider|AuthType|AuthUserFile|AuthzDBDLoginToReferer|AuthzDBDQuery|AuthzDBDRedirectQuery|AuthzDBMType|AuthzSendForbiddenOnFailure|BalancerGrowth|BalancerInherit|BalancerMember|BalancerPersist|BrowserMatch|BrowserMatchNoCase|BufferedLogs|BufferSize|CacheDefaultExpire|CacheDetailHeader|CacheDirLength|CacheDirLevels|CacheDisable|CacheEnable|CacheFile|CacheHeader|CacheIgnoreCacheControl|CacheIgnoreHeaders|CacheIgnoreNoLastMod|CacheIgnoreQueryString|CacheIgnoreURLSessionIdentifiers|CacheKeyBaseURL|CacheLastModifiedFactor|CacheLock|CacheLockMaxAge|CacheLockPath|CacheMaxExpire|CacheMaxFileSize|CacheMinExpire|CacheMinFileSize|CacheNegotiatedDocs|CacheQuickHandler|CacheReadSize|CacheReadTime|CacheRoot|CacheSocache|CacheSocacheMaxSize|CacheSocacheMaxTime|CacheSocacheMinTime|CacheSocacheReadSize|CacheSocacheReadTime|CacheStaleOnError|CacheStoreExpired|CacheStoreNoStore|CacheStorePrivate|CGIDScriptTimeout|CGIMapExtension|CharsetDefault|CharsetOptions|CharsetSourceEnc|CheckCaseOnly|CheckSpelling|ChrootDir|ContentDigest|CookieDomain|CookieExpires|CookieName|CookieStyle|CookieTracking|CoreDumpDirectory|CustomLog|Dav|DavDepthInfinity|DavGenericLockDB|DavLockDB|DavMinTimeout|DBDExptime|DBDInitSQL|DBDKeep|DBDMax|DBDMin|DBDParams|DBDPersist|DBDPrepareSQL|DBDriver|DefaultIcon|DefaultLanguage|DefaultRuntimeDir|DefaultType|Define|DeflateBufferSize|DeflateCompressionLevel|DeflateFilterNote|DeflateInflateLimitRequestBody|DeflateInflateRatioBurst|DeflateInflateRatioLimit|DeflateMemLevel|DeflateWindowSize|Deny|DirectoryCheckHandler|DirectoryIndex|DirectoryIndexRedirect|DirectorySlash|DocumentRoot|DTracePrivileges|DumpIOInput|DumpIOOutput|EnableExceptionHook|EnableMMAP|EnableSendfile|Error|ErrorDocument|ErrorLog|ErrorLogFormat|Example|ExpiresActive|ExpiresByType|ExpiresDefault|ExtendedStatus|ExtFilterDefine|ExtFilterOptions|FallbackResource|FileETag|FilterChain|FilterDeclare|FilterProtocol|FilterProvider|FilterTrace|ForceLanguagePriority|ForceType|ForensicLog|GprofDir|GracefulShutdownTimeout|Group|Header|HeaderName|HeartbeatAddress|HeartbeatListen|HeartbeatMaxServers|HeartbeatStorage|HeartbeatStorage|HostnameLookups|IdentityCheck|IdentityCheckTimeout|ImapBase|ImapDefault|ImapMenu|Include|IncludeOptional|IndexHeadInsert|IndexIgnore|IndexIgnoreReset|IndexOptions|IndexOrderDefault|IndexStyleSheet|InputSed|ISAPIAppendLogToErrors|ISAPIAppendLogToQuery|ISAPICacheFile|ISAPIFakeAsync|ISAPILogNotSupported|ISAPIReadAheadBuffer|KeepAlive|KeepAliveTimeout|KeptBodySize|LanguagePriority|LDAPCacheEntries|LDAPCacheTTL|LDAPConnectionPoolTTL|LDAPConnectionTimeout|LDAPLibraryDebug|LDAPOpCacheEntries|LDAPOpCacheTTL|LDAPReferralHopLimit|LDAPReferrals|LDAPRetries|LDAPRetryDelay|LDAPSharedCacheFile|LDAPSharedCacheSize|LDAPTimeout|LDAPTrustedClientCert|LDAPTrustedGlobalCert|LDAPTrustedMode|LDAPVerifyServerCert|LimitInternalRecursion|LimitRequestBody|LimitRequestFields|LimitRequestFieldSize|LimitRequestLine|LimitXMLRequestBody|Listen|ListenBackLog|LoadFile|LoadModule|LogFormat|LogLevel|LogMessage|LuaAuthzProvider|LuaCodeCache|LuaHookAccessChecker|LuaHookAuthChecker|LuaHookCheckUserID|LuaHookFixups|LuaHookInsertFilter|LuaHookLog|LuaHookMapToStorage|LuaHookTranslateName|LuaHookTypeChecker|LuaInherit|LuaInputFilter|LuaMapHandler|LuaOutputFilter|LuaPackageCPath|LuaPackagePath|LuaQuickHandler|LuaRoot|LuaScope|MaxConnectionsPerChild|MaxKeepAliveRequests|MaxMemFree|MaxRangeOverlaps|MaxRangeReversals|MaxRanges|MaxRequestWorkers|MaxSpareServers|MaxSpareThreads|MaxThreads|MergeTrailers|MetaDir|MetaFiles|MetaSuffix|MimeMagicFile|MinSpareServers|MinSpareThreads|MMapFile|ModemStandard|ModMimeUsePathInfo|MultiviewsMatch|Mutex|NameVirtualHost|NoProxy|NWSSLTrustedCerts|NWSSLUpgradeable|Options|Order|OutputSed|PassEnv|PidFile|PrivilegesMode|Protocol|ProtocolEcho|ProxyAddHeaders|ProxyBadHeader|ProxyBlock|ProxyDomain|ProxyErrorOverride|ProxyExpressDBMFile|ProxyExpressDBMType|ProxyExpressEnable|ProxyFtpDirCharset|ProxyFtpEscapeWildcards|ProxyFtpListOnWildcard|ProxyHTMLBufSize|ProxyHTMLCharsetOut|ProxyHTMLDocType|ProxyHTMLEnable|ProxyHTMLEvents|ProxyHTMLExtended|ProxyHTMLFixups|ProxyHTMLInterp|ProxyHTMLLinks|ProxyHTMLMeta|ProxyHTMLStripComments|ProxyHTMLURLMap|ProxyIOBufferSize|ProxyMaxForwards|ProxyPass|ProxyPassInherit|ProxyPassInterpolateEnv|ProxyPassMatch|ProxyPassReverse|ProxyPassReverseCookieDomain|ProxyPassReverseCookiePath|ProxyPreserveHost|ProxyReceiveBufferSize|ProxyRemote|ProxyRemoteMatch|ProxyRequests|ProxySCGIInternalRedirect|ProxySCGISendfile|ProxySet|ProxySourceAddress|ProxyStatus|ProxyTimeout|ProxyVia|ReadmeName|ReceiveBufferSize|Redirect|RedirectMatch|RedirectPermanent|RedirectTemp|ReflectorHeader|RemoteIPHeader|RemoteIPInternalProxy|RemoteIPInternalProxyList|RemoteIPProxiesHeader|RemoteIPTrustedProxy|RemoteIPTrustedProxyList|RemoveCharset|RemoveEncoding|RemoveHandler|RemoveInputFilter|RemoveLanguage|RemoveOutputFilter|RemoveType|RequestHeader|RequestReadTimeout|Require|RewriteBase|RewriteCond|RewriteEngine|RewriteMap|RewriteOptions|RewriteRule|RLimitCPU|RLimitMEM|RLimitNPROC|Satisfy|ScoreBoardFile|Script|ScriptAlias|ScriptAliasMatch|ScriptInterpreterSource|ScriptLog|ScriptLogBuffer|ScriptLogLength|ScriptSock|SecureListen|SeeRequestTail|SendBufferSize|ServerAdmin|ServerAlias|ServerLimit|ServerName|ServerPath|ServerRoot|ServerSignature|ServerTokens|Session|SessionCookieName|SessionCookieName2|SessionCookieRemove|SessionCryptoCipher|SessionCryptoDriver|SessionCryptoPassphrase|SessionCryptoPassphraseFile|SessionDBDCookieName|SessionDBDCookieName2|SessionDBDCookieRemove|SessionDBDDeleteLabel|SessionDBDInsertLabel|SessionDBDPerUser|SessionDBDSelectLabel|SessionDBDUpdateLabel|SessionEnv|SessionExclude|SessionHeader|SessionInclude|SessionMaxAge|SetEnv|SetEnvIf|SetEnvIfExpr|SetEnvIfNoCase|SetHandler|SetInputFilter|SetOutputFilter|SSIEndTag|SSIErrorMsg|SSIETag|SSILastModified|SSILegacyExprParser|SSIStartTag|SSITimeFormat|SSIUndefinedEcho|SSLCACertificateFile|SSLCACertificatePath|SSLCADNRequestFile|SSLCADNRequestPath|SSLCARevocationCheck|SSLCARevocationFile|SSLCARevocationPath|SSLCertificateChainFile|SSLCertificateFile|SSLCertificateKeyFile|SSLCipherSuite|SSLCompression|SSLCryptoDevice|SSLEngine|SSLFIPS|SSLHonorCipherOrder|SSLInsecureRenegotiation|SSLOCSPDefaultResponder|SSLOCSPEnable|SSLOCSPOverrideResponder|SSLOCSPResponderTimeout|SSLOCSPResponseMaxAge|SSLOCSPResponseTimeSkew|SSLOCSPUseRequestNonce|SSLOpenSSLConfCmd|SSLOptions|SSLPassPhraseDialog|SSLProtocol|SSLProxyCACertificateFile|SSLProxyCACertificatePath|SSLProxyCARevocationCheck|SSLProxyCARevocationFile|SSLProxyCARevocationPath|SSLProxyCheckPeerCN|SSLProxyCheckPeerExpire|SSLProxyCheckPeerName|SSLProxyCipherSuite|SSLProxyEngine|SSLProxyMachineCertificateChainFile|SSLProxyMachineCertificateFile|SSLProxyMachineCertificatePath|SSLProxyProtocol|SSLProxyVerify|SSLProxyVerifyDepth|SSLRandomSeed|SSLRenegBufferSize|SSLRequire|SSLRequireSSL|SSLSessionCache|SSLSessionCacheTimeout|SSLSessionTicketKeyFile|SSLSRPUnknownUserSeed|SSLSRPVerifierFile|SSLStaplingCache|SSLStaplingErrorCacheTimeout|SSLStaplingFakeTryLater|SSLStaplingForceURL|SSLStaplingResponderTimeout|SSLStaplingResponseMaxAge|SSLStaplingResponseTimeSkew|SSLStaplingReturnResponderErrors|SSLStaplingStandardCacheTimeout|SSLStrictSNIVHostCheck|SSLUserName|SSLUseStapling|SSLVerifyClient|SSLVerifyDepth|StartServers|StartThreads|Substitute|Suexec|SuexecUserGroup|ThreadLimit|ThreadsPerChild|ThreadStackSize|TimeOut|TraceEnable|TransferLog|TypesConfig|UnDefine|UndefMacro|UnsetEnv|Use|UseCanonicalName|UseCanonicalPhysicalPort|User|UserDir|VHostCGIMode|VHostCGIPrivs|VHostGroup|VHostPrivs|VHostSecure|VHostUser|VirtualDocumentRoot|VirtualDocumentRootIP|VirtualScriptAlias|VirtualScriptAliasIP|WatchdogInterval|XBitHack|xml2EncAlias|xml2EncDefault|xml2StartParse)\b/mi,
|
||
lookbehind: true,
|
||
alias: 'property'
|
||
},
|
||
'directive-block': {
|
||
pattern: /<\/?\b(AuthnProviderAlias|AuthzProviderAlias|Directory|DirectoryMatch|Else|ElseIf|Files|FilesMatch|If|IfDefine|IfModule|IfVersion|Limit|LimitExcept|Location|LocationMatch|Macro|Proxy|RequireAll|RequireAny|RequireNone|VirtualHost)\b *.*>/i,
|
||
inside: {
|
||
'directive-block': {
|
||
pattern: /^<\/?\w+/,
|
||
inside: {
|
||
'punctuation': /^<\/?/
|
||
},
|
||
alias: 'tag'
|
||
},
|
||
'directive-block-parameter': {
|
||
pattern: /.*[^>]/,
|
||
inside: {
|
||
'punctuation': /:/,
|
||
'string': {
|
||
pattern: /("|').*\1/,
|
||
inside: {
|
||
'variable': /(\$|%)\{?(\w\.?(\+|\-|:)?)+\}?/
|
||
}
|
||
}
|
||
},
|
||
alias: 'attr-value'
|
||
},
|
||
'punctuation': />/
|
||
},
|
||
alias: 'tag'
|
||
},
|
||
'directive-flags': {
|
||
pattern: /\[(\w,?)+\]/,
|
||
alias: 'keyword'
|
||
},
|
||
'string': {
|
||
pattern: /("|').*\1/,
|
||
inside: {
|
||
'variable': /(\$|%)\{?(\w\.?(\+|\-|:)?)+\}?/
|
||
}
|
||
},
|
||
'variable': /(\$|%)\{?(\w\.?(\+|\-|:)?)+\}?/,
|
||
'regex': /\^?.*\$|\^.*\$?/
|
||
};
|
||
|
||
Prism.languages.apl = {
|
||
'comment': /(?:⍝|#[! ]).*$/m,
|
||
'string': {
|
||
pattern: /'(?:[^'\r\n]|'')*'/,
|
||
greedy: true
|
||
},
|
||
'number': /¯?(?:\d*\.?\d+(?:e[+¯]?\d+)?|¯|∞)(?:j¯?(?:\d*\.?\d+(?:e[\+¯]?\d+)?|¯|∞))?/i,
|
||
'statement': /:[A-Z][a-z][A-Za-z]*\b/,
|
||
'system-function': {
|
||
pattern: /⎕[A-Z]+/i,
|
||
alias: 'function'
|
||
},
|
||
'constant': /[⍬⌾#⎕⍞]/,
|
||
'function': /[-+×÷⌈⌊∣|⍳⍸?*⍟○!⌹<≤=>≥≠≡≢∊⍷∪∩~∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⊆⊇⌷⍋⍒⊤⊥⍕⍎⊣⊢⍁⍂≈⍯↗¤→]/,
|
||
'monadic-operator': {
|
||
pattern: /[\\\/⌿⍀¨⍨⌶&∥]/,
|
||
alias: 'operator'
|
||
},
|
||
'dyadic-operator': {
|
||
pattern: /[.⍣⍠⍤∘⌸@⌺]/,
|
||
alias: 'operator'
|
||
},
|
||
'assignment': {
|
||
pattern: /←/,
|
||
alias: 'keyword'
|
||
},
|
||
'punctuation': /[\[;\]()◇⋄]/,
|
||
'dfn': {
|
||
pattern: /[{}⍺⍵⍶⍹∇⍫:]/,
|
||
alias: 'builtin'
|
||
}
|
||
};
|
||
|
||
Prism.languages.applescript = {
|
||
'comment': [
|
||
// Allow one level of nesting
|
||
/\(\*(?:\(\*[\s\S]*?\*\)|[\s\S])*?\*\)/,
|
||
/--.+/,
|
||
/#.+/
|
||
],
|
||
'string': /"(?:\\?.)*?"/,
|
||
'number': /\b-?\d*\.?\d+([Ee]-?\d+)?\b/,
|
||
'operator': [
|
||
/[&=≠≤≥*+\-\/÷^]|[<>]=?/,
|
||
/\b(?:(?:start|begin|end)s? with|(?:(?:does not|doesn't) contain|contains?)|(?:is|isn't|is not) (?:in|contained by)|(?:(?:is|isn't|is not) )?(?:greater|less) than(?: or equal)?(?: to)?|(?:(?:does not|doesn't) come|comes) (?:before|after)|(?:is|isn't|is not) equal(?: to)?|(?:(?:does not|doesn't) equal|equals|equal to|isn't|is not)|(?:a )?(?:ref(?: to)?|reference to)|(?:and|or|div|mod|as|not))\b/
|
||
],
|
||
'keyword': /\b(?:about|above|after|against|apart from|around|aside from|at|back|before|beginning|behind|below|beneath|beside|between|but|by|considering|continue|copy|does|eighth|else|end|equal|error|every|exit|false|fifth|first|for|fourth|from|front|get|given|global|if|ignoring|in|instead of|into|is|it|its|last|local|me|middle|my|ninth|of|on|onto|out of|over|prop|property|put|repeat|return|returning|second|set|seventh|since|sixth|some|tell|tenth|that|the|then|third|through|thru|timeout|times|to|transaction|true|try|until|where|while|whose|with|without)\b/,
|
||
'class': {
|
||
pattern: /\b(?:alias|application|boolean|class|constant|date|file|integer|list|number|POSIX file|real|record|reference|RGB color|script|text|centimetres|centimeters|feet|inches|kilometres|kilometers|metres|meters|miles|yards|square feet|square kilometres|square kilometers|square metres|square meters|square miles|square yards|cubic centimetres|cubic centimeters|cubic feet|cubic inches|cubic metres|cubic meters|cubic yards|gallons|litres|liters|quarts|grams|kilograms|ounces|pounds|degrees Celsius|degrees Fahrenheit|degrees Kelvin)\b/,
|
||
alias: 'builtin'
|
||
},
|
||
'punctuation': /[{}():,¬«»《》]/
|
||
};
|
||
(function (Prism) {
|
||
|
||
var attributes = {
|
||
pattern: /(^[ \t]*)\[(?!\[)(?:(["'$`])(?:(?!\2)[^\\]|\\.)*\2|\[(?:[^\]\\]|\\.)*\]|[^\]\\]|\\.)*\]/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'quoted': {
|
||
pattern: /([$`])(?:(?!\1)[^\\]|\\.)*\1/,
|
||
inside: {
|
||
'punctuation': /^[$`]|[$`]$/
|
||
}
|
||
},
|
||
'interpreted': {
|
||
pattern: /'(?:[^'\\]|\\.)*'/,
|
||
inside: {
|
||
'punctuation': /^'|'$/
|
||
// See rest below
|
||
}
|
||
},
|
||
'string': /"(?:[^"\\]|\\.)*"/,
|
||
'variable': /\w+(?==)/,
|
||
'punctuation': /^\[|\]$|,/,
|
||
'operator': /=/,
|
||
// The negative look-ahead prevents blank matches
|
||
'attr-value': /(?!^\s+$).+/
|
||
}
|
||
};
|
||
Prism.languages.asciidoc = {
|
||
'comment-block': {
|
||
pattern: /^(\/{4,})(?:\r?\n|\r)(?:[\s\S]*(?:\r?\n|\r))??\1/m,
|
||
alias: 'comment'
|
||
},
|
||
'table': {
|
||
pattern: /^\|={3,}(?:(?:\r?\n|\r).*)*?(?:\r?\n|\r)\|={3,}$/m,
|
||
inside: {
|
||
'specifiers': {
|
||
pattern: /(?!\|)(?:(?:(?:\d+(?:\.\d+)?|\.\d+)[+*])?(?:[<^>](?:\.[<^>])?|\.[<^>])?[a-z]*)(?=\|)/,
|
||
alias: 'attr-value'
|
||
},
|
||
'punctuation': {
|
||
pattern: /(^|[^\\])[|!]=*/,
|
||
lookbehind: true
|
||
}
|
||
// See rest below
|
||
}
|
||
},
|
||
|
||
'passthrough-block': {
|
||
pattern: /^(\+{4,})(?:\r?\n|\r)(?:[\s\S]*(?:\r?\n|\r))??\1$/m,
|
||
inside: {
|
||
'punctuation': /^\++|\++$/
|
||
// See rest below
|
||
}
|
||
},
|
||
// Literal blocks and listing blocks
|
||
'literal-block': {
|
||
pattern: /^(-{4,}|\.{4,})(?:\r?\n|\r)(?:[\s\S]*(?:\r?\n|\r))??\1$/m,
|
||
inside: {
|
||
'punctuation': /^(?:-+|\.+)|(?:-+|\.+)$/
|
||
// See rest below
|
||
}
|
||
},
|
||
// Sidebar blocks, quote blocks, example blocks and open blocks
|
||
'other-block': {
|
||
pattern: /^(--|\*{4,}|_{4,}|={4,})(?:\r?\n|\r)(?:[\s\S]*(?:\r?\n|\r))??\1$/m,
|
||
inside: {
|
||
'punctuation': /^(?:-+|\*+|_+|=+)|(?:-+|\*+|_+|=+)$/
|
||
// See rest below
|
||
}
|
||
},
|
||
|
||
// list-punctuation and list-label must appear before indented-block
|
||
'list-punctuation': {
|
||
pattern: /(^[ \t]*)(?:-|\*{1,5}|\.{1,5}|(?:[a-z]|\d+)\.|[xvi]+\))(?= )/im,
|
||
lookbehind: true,
|
||
alias: 'punctuation'
|
||
},
|
||
'list-label': {
|
||
pattern: /(^[ \t]*)[a-z\d].+(?::{2,4}|;;)(?=\s)/im,
|
||
lookbehind: true,
|
||
alias: 'symbol'
|
||
},
|
||
'indented-block': {
|
||
pattern: /((\r?\n|\r)\2)([ \t]+)\S.*(?:(?:\r?\n|\r)\3.+)*(?=\2{2}|$)/,
|
||
lookbehind: true
|
||
},
|
||
|
||
'comment': /^\/\/.*/m,
|
||
'title': {
|
||
pattern: /^.+(?:\r?\n|\r)(?:={3,}|-{3,}|~{3,}|\^{3,}|\+{3,})$|^={1,5} +.+|^\.(?![\s.]).*/m,
|
||
alias: 'important',
|
||
inside: {
|
||
'punctuation': /^(?:\.|=+)|(?:=+|-+|~+|\^+|\++)$/
|
||
// See rest below
|
||
}
|
||
},
|
||
'attribute-entry': {
|
||
pattern: /^:[^:\r\n]+:(?: .*?(?: \+(?:\r?\n|\r).*?)*)?$/m,
|
||
alias: 'tag'
|
||
},
|
||
'attributes': attributes,
|
||
'hr': {
|
||
pattern: /^'{3,}$/m,
|
||
alias: 'punctuation'
|
||
},
|
||
'page-break': {
|
||
pattern: /^<{3,}$/m,
|
||
alias: 'punctuation'
|
||
},
|
||
'admonition': {
|
||
pattern: /^(?:TIP|NOTE|IMPORTANT|WARNING|CAUTION):/m,
|
||
alias: 'keyword'
|
||
},
|
||
'callout': [
|
||
{
|
||
pattern: /(^[ \t]*)<?\d*>/m,
|
||
lookbehind: true,
|
||
alias: 'symbol'
|
||
},
|
||
{
|
||
pattern: /<\d+>/,
|
||
alias: 'symbol'
|
||
}
|
||
],
|
||
'macro': {
|
||
pattern: /\b[a-z\d][a-z\d-]*::?(?:(?:\S+)??\[(?:[^\]\\"]|(["'])(?:(?!\1)[^\\]|\\.)*\1|\\.)*\])/,
|
||
inside: {
|
||
'function': /^[a-z\d-]+(?=:)/,
|
||
'punctuation': /^::?/,
|
||
'attributes': {
|
||
pattern: /(?:\[(?:[^\]\\"]|(["'])(?:(?!\1)[^\\]|\\.)*\1|\\.)*\])/,
|
||
inside: attributes.inside
|
||
}
|
||
}
|
||
},
|
||
'inline': {
|
||
/*
|
||
The initial look-behind prevents the highlighting of escaped quoted text.
|
||
|
||
Quoted text can be multi-line but cannot span an empty line.
|
||
All quoted text can have attributes before [foobar, 'foobar', baz="bar"].
|
||
|
||
First, we handle the constrained quotes.
|
||
Those must be bounded by non-word chars and cannot have spaces between the delimiter and the first char.
|
||
They are, in order: _emphasis_, ``double quotes'', `single quotes', `monospace`, 'emphasis', *strong*, +monospace+ and #unquoted#
|
||
|
||
Then we handle the unconstrained quotes.
|
||
Those do not have the restrictions of the constrained quotes.
|
||
They are, in order: __emphasis__, **strong**, ++monospace++, +++passthrough+++, ##unquoted##, $$passthrough$$, ~subscript~, ^superscript^, {attribute-reference}, [[anchor]], [[[bibliography anchor]]], <<xref>>, (((indexes))) and ((indexes))
|
||
*/
|
||
pattern: /(^|[^\\])(?:(?:\B\[(?:[^\]\\"]|(["'])(?:(?!\2)[^\\]|\\.)*\2|\\.)*\])?(?:\b_(?!\s)(?: _|[^_\\\r\n]|\\.)+(?:(?:\r?\n|\r)(?: _|[^_\\\r\n]|\\.)+)*_\b|\B``(?!\s).+?(?:(?:\r?\n|\r).+?)*''\B|\B`(?!\s)(?: ['`]|.)+?(?:(?:\r?\n|\r)(?: ['`]|.)+?)*['`]\B|\B(['*+#])(?!\s)(?: \3|(?!\3)[^\\\r\n]|\\.)+(?:(?:\r?\n|\r)(?: \3|(?!\3)[^\\\r\n]|\\.)+)*\3\B)|(?:\[(?:[^\]\\"]|(["'])(?:(?!\4)[^\\]|\\.)*\4|\\.)*\])?(?:(__|\*\*|\+\+\+?|##|\$\$|[~^]).+?(?:(?:\r?\n|\r).+?)*\5|\{[^}\r\n]+\}|\[\[\[?.+?(?:(?:\r?\n|\r).+?)*\]?\]\]|<<.+?(?:(?:\r?\n|\r).+?)*>>|\(\(\(?.+?(?:(?:\r?\n|\r).+?)*\)?\)\)))/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'attributes': attributes,
|
||
'url': {
|
||
pattern: /^(?:\[\[\[?.+?\]?\]\]|<<.+?>>)$/,
|
||
inside: {
|
||
'punctuation': /^(?:\[\[\[?|<<)|(?:\]\]\]?|>>)$/
|
||
}
|
||
},
|
||
'attribute-ref': {
|
||
pattern: /^\{.+\}$/,
|
||
inside: {
|
||
'variable': {
|
||
pattern: /(^\{)[a-z\d,+_-]+/,
|
||
lookbehind: true
|
||
},
|
||
'operator': /^[=?!#%@$]|!(?=[:}])/,
|
||
'punctuation': /^\{|\}$|::?/
|
||
}
|
||
},
|
||
'italic': {
|
||
pattern: /^(['_])[\s\S]+\1$/,
|
||
inside: {
|
||
'punctuation': /^(?:''?|__?)|(?:''?|__?)$/
|
||
}
|
||
},
|
||
'bold': {
|
||
pattern: /^\*[\s\S]+\*$/,
|
||
inside: {
|
||
punctuation: /^\*\*?|\*\*?$/
|
||
}
|
||
},
|
||
'punctuation': /^(?:``?|\+{1,3}|##?|\$\$|[~^]|\(\(\(?)|(?:''?|\+{1,3}|##?|\$\$|[~^`]|\)?\)\))$/
|
||
}
|
||
},
|
||
'replacement': {
|
||
pattern: /\((?:C|TM|R)\)/,
|
||
alias: 'builtin'
|
||
},
|
||
'entity': /&#?[\da-z]{1,8};/i,
|
||
'line-continuation': {
|
||
pattern: /(^| )\+$/m,
|
||
lookbehind: true,
|
||
alias: 'punctuation'
|
||
}
|
||
};
|
||
|
||
|
||
// Allow some nesting. There is no recursion though, so cloning should not be needed.
|
||
|
||
attributes.inside['interpreted'].inside.rest = {
|
||
'macro': Prism.languages.asciidoc['macro'],
|
||
'inline': Prism.languages.asciidoc['inline'],
|
||
'replacement': Prism.languages.asciidoc['replacement'],
|
||
'entity': Prism.languages.asciidoc['entity']
|
||
};
|
||
|
||
Prism.languages.asciidoc['passthrough-block'].inside.rest = {
|
||
'macro': Prism.languages.asciidoc['macro']
|
||
};
|
||
|
||
Prism.languages.asciidoc['literal-block'].inside.rest = {
|
||
'callout': Prism.languages.asciidoc['callout']
|
||
};
|
||
|
||
Prism.languages.asciidoc['table'].inside.rest = {
|
||
'comment-block': Prism.languages.asciidoc['comment-block'],
|
||
'passthrough-block': Prism.languages.asciidoc['passthrough-block'],
|
||
'literal-block': Prism.languages.asciidoc['literal-block'],
|
||
'other-block': Prism.languages.asciidoc['other-block'],
|
||
'list-punctuation': Prism.languages.asciidoc['list-punctuation'],
|
||
'indented-block': Prism.languages.asciidoc['indented-block'],
|
||
'comment': Prism.languages.asciidoc['comment'],
|
||
'title': Prism.languages.asciidoc['title'],
|
||
'attribute-entry': Prism.languages.asciidoc['attribute-entry'],
|
||
'attributes': Prism.languages.asciidoc['attributes'],
|
||
'hr': Prism.languages.asciidoc['hr'],
|
||
'page-break': Prism.languages.asciidoc['page-break'],
|
||
'admonition': Prism.languages.asciidoc['admonition'],
|
||
'list-label': Prism.languages.asciidoc['list-label'],
|
||
'callout': Prism.languages.asciidoc['callout'],
|
||
'macro': Prism.languages.asciidoc['macro'],
|
||
'inline': Prism.languages.asciidoc['inline'],
|
||
'replacement': Prism.languages.asciidoc['replacement'],
|
||
'entity': Prism.languages.asciidoc['entity'],
|
||
'line-continuation': Prism.languages.asciidoc['line-continuation']
|
||
};
|
||
|
||
Prism.languages.asciidoc['other-block'].inside.rest = {
|
||
'table': Prism.languages.asciidoc['table'],
|
||
'list-punctuation': Prism.languages.asciidoc['list-punctuation'],
|
||
'indented-block': Prism.languages.asciidoc['indented-block'],
|
||
'comment': Prism.languages.asciidoc['comment'],
|
||
'attribute-entry': Prism.languages.asciidoc['attribute-entry'],
|
||
'attributes': Prism.languages.asciidoc['attributes'],
|
||
'hr': Prism.languages.asciidoc['hr'],
|
||
'page-break': Prism.languages.asciidoc['page-break'],
|
||
'admonition': Prism.languages.asciidoc['admonition'],
|
||
'list-label': Prism.languages.asciidoc['list-label'],
|
||
'macro': Prism.languages.asciidoc['macro'],
|
||
'inline': Prism.languages.asciidoc['inline'],
|
||
'replacement': Prism.languages.asciidoc['replacement'],
|
||
'entity': Prism.languages.asciidoc['entity'],
|
||
'line-continuation': Prism.languages.asciidoc['line-continuation']
|
||
};
|
||
|
||
Prism.languages.asciidoc['title'].inside.rest = {
|
||
'macro': Prism.languages.asciidoc['macro'],
|
||
'inline': Prism.languages.asciidoc['inline'],
|
||
'replacement': Prism.languages.asciidoc['replacement'],
|
||
'entity': Prism.languages.asciidoc['entity']
|
||
};
|
||
|
||
// Plugin to make entity title show the real entity, idea by Roman Komarov
|
||
Prism.hooks.add('wrap', function(env) {
|
||
if (env.type === 'entity') {
|
||
env.attributes['title'] = env.content.replace(/&/, '&');
|
||
}
|
||
});
|
||
}(Prism));
|
||
Prism.languages.aspnet = Prism.languages.extend('markup', {
|
||
'page-directive tag': {
|
||
pattern: /<%\s*@.*%>/i,
|
||
inside: {
|
||
'page-directive tag': /<%\s*@\s*(?:Assembly|Control|Implements|Import|Master(?:Type)?|OutputCache|Page|PreviousPageType|Reference|Register)?|%>/i,
|
||
rest: Prism.languages.markup.tag.inside
|
||
}
|
||
},
|
||
'directive tag': {
|
||
pattern: /<%.*%>/i,
|
||
inside: {
|
||
'directive tag': /<%\s*?[$=%#:]{0,2}|%>/i,
|
||
rest: Prism.languages.csharp
|
||
}
|
||
}
|
||
});
|
||
// Regexp copied from prism-markup, with a negative look-ahead added
|
||
Prism.languages.aspnet.tag.pattern = /<(?!%)\/?[^\s>\/]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\s\S])*\1|[^\s'">=]+))?)*\s*\/?>/i;
|
||
|
||
// match directives of attribute value foo="<% Bar %>"
|
||
Prism.languages.insertBefore('inside', 'punctuation', {
|
||
'directive tag': Prism.languages.aspnet['directive tag']
|
||
}, Prism.languages.aspnet.tag.inside["attr-value"]);
|
||
|
||
Prism.languages.insertBefore('aspnet', 'comment', {
|
||
'asp comment': /<%--[\s\S]*?--%>/
|
||
});
|
||
|
||
// script runat="server" contains csharp, not javascript
|
||
Prism.languages.insertBefore('aspnet', Prism.languages.javascript ? 'script' : 'tag', {
|
||
'asp script': {
|
||
pattern: /(<script(?=.*runat=['"]?server['"]?)[\s\S]*?>)[\s\S]*?(?=<\/script>)/i,
|
||
lookbehind: true,
|
||
inside: Prism.languages.csharp || {}
|
||
}
|
||
});
|
||
Prism.languages.autoit = {
|
||
"comment": [
|
||
/;.*/,
|
||
{
|
||
// The multi-line comments delimiters can actually be commented out with ";"
|
||
pattern: /(^\s*)#(?:comments-start|cs)[\s\S]*?^\s*#(?:comments-end|ce)/m,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
"url": {
|
||
pattern: /(^\s*#include\s+)(?:<[^\r\n>]+>|"[^\r\n"]+")/m,
|
||
lookbehind: true
|
||
},
|
||
"string": {
|
||
pattern: /(["'])(?:\1\1|(?!\1)[^\r\n])*\1/,
|
||
greedy: true,
|
||
inside: {
|
||
"variable": /([%$@])\w+\1/
|
||
}
|
||
},
|
||
"directive": {
|
||
pattern: /(^\s*)#\w+/m,
|
||
lookbehind: true,
|
||
alias: 'keyword'
|
||
},
|
||
"function": /\b\w+(?=\()/,
|
||
// Variables and macros
|
||
"variable": /[$@]\w+/,
|
||
"keyword": /\b(?:Case|Const|Continue(?:Case|Loop)|Default|Dim|Do|Else(?:If)?|End(?:Func|If|Select|Switch|With)|Enum|Exit(?:Loop)?|For|Func|Global|If|In|Local|Next|Null|ReDim|Select|Static|Step|Switch|Then|To|Until|Volatile|WEnd|While|With)\b/i,
|
||
"number": /\b(?:0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)\b/i,
|
||
"boolean": /\b(?:True|False)\b/i,
|
||
"operator": /<[=>]?|[-+*\/=&>]=?|[?^]|\b(?:And|Or|Not)\b/i,
|
||
"punctuation": /[\[\]().,:]/
|
||
};
|
||
// NOTES - follows first-first highlight method, block is locked after highlight, different from SyntaxHl
|
||
Prism.languages.autohotkey= {
|
||
'comment': {
|
||
pattern: /(^[^";\n]*("[^"\n]*?"[^"\n]*?)*)(;.*$|^\s*\/\*[\s\S]*\n\*\/)/m,
|
||
lookbehind: true
|
||
},
|
||
'string': /"(([^"\n\r]|"")*)"/m,
|
||
'function': /[^\(\); \t,\n\+\*\-=\?>:\\\/<&%\[\]]+?(?=\()/m, //function - don't use .*\) in the end bcoz string locks it
|
||
'tag': /^[ \t]*[^\s:]+?(?=:(?:[^:]|$))/m, //labels
|
||
'variable': /%\w+%/,
|
||
'number': /\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/,
|
||
'operator': /\?|\/\/?=?|:=|\|[=|]?|&[=&]?|\+[=+]?|-[=-]?|\*[=*]?|<(?:<=?|>|=)?|>>?=?|[.^!=~]=?|\b(?:AND|NOT|OR)\b/,
|
||
'punctuation': /[\{}[\]\(\):,]/,
|
||
'boolean': /\b(true|false)\b/,
|
||
|
||
'selector': /\b(AutoTrim|BlockInput|Break|Click|ClipWait|Continue|Control|ControlClick|ControlFocus|ControlGet|ControlGetFocus|ControlGetPos|ControlGetText|ControlMove|ControlSend|ControlSendRaw|ControlSetText|CoordMode|Critical|DetectHiddenText|DetectHiddenWindows|Drive|DriveGet|DriveSpaceFree|EnvAdd|EnvDiv|EnvGet|EnvMult|EnvSet|EnvSub|EnvUpdate|Exit|ExitApp|FileAppend|FileCopy|FileCopyDir|FileCreateDir|FileCreateShortcut|FileDelete|FileEncoding|FileGetAttrib|FileGetShortcut|FileGetSize|FileGetTime|FileGetVersion|FileInstall|FileMove|FileMoveDir|FileRead|FileReadLine|FileRecycle|FileRecycleEmpty|FileRemoveDir|FileSelectFile|FileSelectFolder|FileSetAttrib|FileSetTime|FormatTime|GetKeyState|Gosub|Goto|GroupActivate|GroupAdd|GroupClose|GroupDeactivate|Gui|GuiControl|GuiControlGet|Hotkey|ImageSearch|IniDelete|IniRead|IniWrite|Input|InputBox|KeyWait|ListHotkeys|ListLines|ListVars|Loop|Menu|MouseClick|MouseClickDrag|MouseGetPos|MouseMove|MsgBox|OnExit|OutputDebug|Pause|PixelGetColor|PixelSearch|PostMessage|Process|Progress|Random|RegDelete|RegRead|RegWrite|Reload|Repeat|Return|Run|RunAs|RunWait|Send|SendEvent|SendInput|SendMessage|SendMode|SendPlay|SendRaw|SetBatchLines|SetCapslockState|SetControlDelay|SetDefaultMouseSpeed|SetEnv|SetFormat|SetKeyDelay|SetMouseDelay|SetNumlockState|SetScrollLockState|SetStoreCapslockMode|SetTimer|SetTitleMatchMode|SetWinDelay|SetWorkingDir|Shutdown|Sleep|Sort|SoundBeep|SoundGet|SoundGetWaveVolume|SoundPlay|SoundSet|SoundSetWaveVolume|SplashImage|SplashTextOff|SplashTextOn|SplitPath|StatusBarGetText|StatusBarWait|StringCaseSense|StringGetPos|StringLeft|StringLen|StringLower|StringMid|StringReplace|StringRight|StringSplit|StringTrimLeft|StringTrimRight|StringUpper|Suspend|SysGet|Thread|ToolTip|Transform|TrayTip|URLDownloadToFile|WinActivate|WinActivateBottom|WinClose|WinGet|WinGetActiveStats|WinGetActiveTitle|WinGetClass|WinGetPos|WinGetText|WinGetTitle|WinHide|WinKill|WinMaximize|WinMenuSelectItem|WinMinimize|WinMinimizeAll|WinMinimizeAllUndo|WinMove|WinRestore|WinSet|WinSetTitle|WinShow|WinWait|WinWaitActive|WinWaitClose|WinWaitNotActive)\b/i,
|
||
|
||
'constant': /\b(a_ahkpath|a_ahkversion|a_appdata|a_appdatacommon|a_autotrim|a_batchlines|a_caretx|a_carety|a_computername|a_controldelay|a_cursor|a_dd|a_ddd|a_dddd|a_defaultmousespeed|a_desktop|a_desktopcommon|a_detecthiddentext|a_detecthiddenwindows|a_endchar|a_eventinfo|a_exitreason|a_formatfloat|a_formatinteger|a_gui|a_guievent|a_guicontrol|a_guicontrolevent|a_guiheight|a_guiwidth|a_guix|a_guiy|a_hour|a_iconfile|a_iconhidden|a_iconnumber|a_icontip|a_index|a_ipaddress1|a_ipaddress2|a_ipaddress3|a_ipaddress4|a_isadmin|a_iscompiled|a_iscritical|a_ispaused|a_issuspended|a_isunicode|a_keydelay|a_language|a_lasterror|a_linefile|a_linenumber|a_loopfield|a_loopfileattrib|a_loopfiledir|a_loopfileext|a_loopfilefullpath|a_loopfilelongpath|a_loopfilename|a_loopfileshortname|a_loopfileshortpath|a_loopfilesize|a_loopfilesizekb|a_loopfilesizemb|a_loopfiletimeaccessed|a_loopfiletimecreated|a_loopfiletimemodified|a_loopreadline|a_loopregkey|a_loopregname|a_loopregsubkey|a_loopregtimemodified|a_loopregtype|a_mday|a_min|a_mm|a_mmm|a_mmmm|a_mon|a_mousedelay|a_msec|a_mydocuments|a_now|a_nowutc|a_numbatchlines|a_ostype|a_osversion|a_priorhotkey|programfiles|a_programfiles|a_programs|a_programscommon|a_screenheight|a_screenwidth|a_scriptdir|a_scriptfullpath|a_scriptname|a_sec|a_space|a_startmenu|a_startmenucommon|a_startup|a_startupcommon|a_stringcasesense|a_tab|a_temp|a_thisfunc|a_thishotkey|a_thislabel|a_thismenu|a_thismenuitem|a_thismenuitempos|a_tickcount|a_timeidle|a_timeidlephysical|a_timesincepriorhotkey|a_timesincethishotkey|a_titlematchmode|a_titlematchmodespeed|a_username|a_wday|a_windelay|a_windir|a_workingdir|a_yday|a_year|a_yweek|a_yyyy|clipboard|clipboardall|comspec|errorlevel)\b/i,
|
||
|
||
'builtin': /\b(abs|acos|asc|asin|atan|ceil|chr|class|cos|dllcall|exp|fileexist|Fileopen|floor|il_add|il_create|il_destroy|instr|substr|isfunc|islabel|IsObject|ln|log|lv_add|lv_delete|lv_deletecol|lv_getcount|lv_getnext|lv_gettext|lv_insert|lv_insertcol|lv_modify|lv_modifycol|lv_setimagelist|mod|onmessage|numget|numput|registercallback|regexmatch|regexreplace|round|sin|tan|sqrt|strlen|sb_seticon|sb_setparts|sb_settext|strsplit|tv_add|tv_delete|tv_getchild|tv_getcount|tv_getnext|tv_get|tv_getparent|tv_getprev|tv_getselection|tv_gettext|tv_modify|varsetcapacity|winactive|winexist|__New|__Call|__Get|__Set)\b/i,
|
||
|
||
'symbol': /\b(alt|altdown|altup|appskey|backspace|browser_back|browser_favorites|browser_forward|browser_home|browser_refresh|browser_search|browser_stop|bs|capslock|ctrl|ctrlbreak|ctrldown|ctrlup|del|delete|down|end|enter|esc|escape|f1|f10|f11|f12|f13|f14|f15|f16|f17|f18|f19|f2|f20|f21|f22|f23|f24|f3|f4|f5|f6|f7|f8|f9|home|ins|insert|joy1|joy10|joy11|joy12|joy13|joy14|joy15|joy16|joy17|joy18|joy19|joy2|joy20|joy21|joy22|joy23|joy24|joy25|joy26|joy27|joy28|joy29|joy3|joy30|joy31|joy32|joy4|joy5|joy6|joy7|joy8|joy9|joyaxes|joybuttons|joyinfo|joyname|joypov|joyr|joyu|joyv|joyx|joyy|joyz|lalt|launch_app1|launch_app2|launch_mail|launch_media|lbutton|lcontrol|lctrl|left|lshift|lwin|lwindown|lwinup|mbutton|media_next|media_play_pause|media_prev|media_stop|numlock|numpad0|numpad1|numpad2|numpad3|numpad4|numpad5|numpad6|numpad7|numpad8|numpad9|numpadadd|numpadclear|numpaddel|numpaddiv|numpaddot|numpaddown|numpadend|numpadenter|numpadhome|numpadins|numpadleft|numpadmult|numpadpgdn|numpadpgup|numpadright|numpadsub|numpadup|pgdn|pgup|printscreen|ralt|rbutton|rcontrol|rctrl|right|rshift|rwin|rwindown|rwinup|scrolllock|shift|shiftdown|shiftup|space|tab|up|volume_down|volume_mute|volume_up|wheeldown|wheelleft|wheelright|wheelup|xbutton1|xbutton2)\b/i,
|
||
|
||
'important': /#\b(AllowSameLineComments|ClipboardTimeout|CommentFlag|ErrorStdOut|EscapeChar|HotkeyInterval|HotkeyModifierTimeout|Hotstring|IfWinActive|IfWinExist|IfWinNotActive|IfWinNotExist|Include|IncludeAgain|InstallKeybdHook|InstallMouseHook|KeyHistory|LTrim|MaxHotkeysPerInterval|MaxMem|MaxThreads|MaxThreadsBuffer|MaxThreadsPerHotkey|NoEnv|NoTrayIcon|Persistent|SingleInstance|UseHook|WinActivateForce)\b/i,
|
||
|
||
'keyword': /\b(Abort|AboveNormal|Add|ahk_class|ahk_group|ahk_id|ahk_pid|All|Alnum|Alpha|AltSubmit|AltTab|AltTabAndMenu|AltTabMenu|AltTabMenuDismiss|AlwaysOnTop|AutoSize|Background|BackgroundTrans|BelowNormal|between|BitAnd|BitNot|BitOr|BitShiftLeft|BitShiftRight|BitXOr|Bold|Border|Button|ByRef|Checkbox|Checked|CheckedGray|Choose|ChooseString|Close|Color|ComboBox|Contains|ControlList|Count|Date|DateTime|Days|DDL|Default|DeleteAll|Delimiter|Deref|Destroy|Digit|Disable|Disabled|DropDownList|Edit|Eject|Else|Enable|Enabled|Error|Exist|Expand|ExStyle|FileSystem|First|Flash|Float|FloatFast|Focus|Font|for|global|Grid|Group|GroupBox|GuiClose|GuiContextMenu|GuiDropFiles|GuiEscape|GuiSize|Hdr|Hidden|Hide|High|HKCC|HKCR|HKCU|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_LOCAL_MACHINE|HKEY_USERS|HKLM|HKU|Hours|HScroll|Icon|IconSmall|ID|IDLast|If|IfEqual|IfExist|IfGreater|IfGreaterOrEqual|IfInString|IfLess|IfLessOrEqual|IfMsgBox|IfNotEqual|IfNotExist|IfNotInString|IfWinActive|IfWinExist|IfWinNotActive|IfWinNotExist|Ignore|ImageList|in|Integer|IntegerFast|Interrupt|is|italic|Join|Label|LastFound|LastFoundExist|Limit|Lines|List|ListBox|ListView|local|Lock|Logoff|Low|Lower|Lowercase|MainWindow|Margin|Maximize|MaximizeBox|MaxSize|Minimize|MinimizeBox|MinMax|MinSize|Minutes|MonthCal|Mouse|Move|Multi|NA|No|NoActivate|NoDefault|NoHide|NoIcon|NoMainWindow|norm|Normal|NoSort|NoSortHdr|NoStandard|Not|NoTab|NoTimers|Number|Off|Ok|On|OwnDialogs|Owner|Parse|Password|Picture|Pixel|Pos|Pow|Priority|ProcessName|Radio|Range|Read|ReadOnly|Realtime|Redraw|REG_BINARY|REG_DWORD|REG_EXPAND_SZ|REG_MULTI_SZ|REG_SZ|Region|Relative|Rename|Report|Resize|Restore|Retry|RGB|Screen|Seconds|Section|Serial|SetLabel|ShiftAltTab|Show|Single|Slider|SortDesc|Standard|static|Status|StatusBar|StatusCD|strike|Style|Submit|SysMenu|Tab2|TabStop|Text|Theme|Tile|ToggleCheck|ToggleEnable|ToolWindow|Top|Topmost|TransColor|Transparent|Tray|TreeView|TryAgain|Type|UnCheck|underline|Unicode|Unlock|UpDown|Upper|Uppercase|UseErrorLevel|Vis|VisFirst|Visible|VScroll|Wait|WaitClose|WantCtrlA|WantF2|WantReturn|While|Wrap|Xdigit|xm|xp|xs|Yes|ym|yp|ys)\b/i
|
||
};
|
||
(function(Prism) {
|
||
var insideString = {
|
||
variable: [
|
||
// Arithmetic Environment
|
||
{
|
||
pattern: /\$?\(\([\s\S]+?\)\)/,
|
||
inside: {
|
||
// If there is a $ sign at the beginning highlight $(( and )) as variable
|
||
variable: [{
|
||
pattern: /(^\$\(\([\s\S]+)\)\)/,
|
||
lookbehind: true
|
||
},
|
||
/^\$\(\(/,
|
||
],
|
||
number: /\b-?(?:0x[\dA-Fa-f]+|\d*\.?\d+(?:[Ee]-?\d+)?)\b/,
|
||
// Operators according to https://www.gnu.org/software/bash/manual/bashref.html#Shell-Arithmetic
|
||
operator: /--?|-=|\+\+?|\+=|!=?|~|\*\*?|\*=|\/=?|%=?|<<=?|>>=?|<=?|>=?|==?|&&?|&=|\^=?|\|\|?|\|=|\?|:/,
|
||
// If there is no $ sign at the beginning highlight (( and )) as punctuation
|
||
punctuation: /\(\(?|\)\)?|,|;/
|
||
}
|
||
},
|
||
// Command Substitution
|
||
{
|
||
pattern: /\$\([^)]+\)|`[^`]+`/,
|
||
inside: {
|
||
variable: /^\$\(|^`|\)$|`$/
|
||
}
|
||
},
|
||
/\$(?:[a-z0-9_#\?\*!@]+|\{[^}]+\})/i
|
||
],
|
||
};
|
||
|
||
Prism.languages.bash = {
|
||
'shebang': {
|
||
pattern: /^#!\s*\/bin\/bash|^#!\s*\/bin\/sh/,
|
||
alias: 'important'
|
||
},
|
||
'comment': {
|
||
pattern: /(^|[^"{\\])#.*/,
|
||
lookbehind: true
|
||
},
|
||
'string': [
|
||
//Support for Here-Documents https://en.wikipedia.org/wiki/Here_document
|
||
{
|
||
pattern: /((?:^|[^<])<<\s*)(?:"|')?(\w+?)(?:"|')?\s*\r?\n(?:[\s\S])*?\r?\n\2/g,
|
||
lookbehind: true,
|
||
greedy: true,
|
||
inside: insideString
|
||
},
|
||
{
|
||
pattern: /(["'])(?:\\\\|\\?[^\\])*?\1/g,
|
||
greedy: true,
|
||
inside: insideString
|
||
}
|
||
],
|
||
'variable': insideString.variable,
|
||
// Originally based on http://ss64.com/bash/
|
||
'function': {
|
||
pattern: /(^|\s|;|\||&)(?:alias|apropos|apt-get|aptitude|aspell|awk|basename|bash|bc|bg|builtin|bzip2|cal|cat|cd|cfdisk|chgrp|chmod|chown|chroot|chkconfig|cksum|clear|cmp|comm|command|cp|cron|crontab|csplit|cut|date|dc|dd|ddrescue|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|du|egrep|eject|enable|env|ethtool|eval|exec|expand|expect|export|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|getopts|git|grep|groupadd|groupdel|groupmod|groups|gzip|hash|head|help|hg|history|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|jobs|join|kill|killall|less|link|ln|locate|logname|logout|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|make|man|mkdir|mkfifo|mkisofs|mknod|more|most|mount|mtools|mtr|mv|mmv|nano|netstat|nice|nl|nohup|notify-send|npm|nslookup|open|op|passwd|paste|pathchk|ping|pkill|popd|pr|printcap|printenv|printf|ps|pushd|pv|pwd|quota|quotacheck|quotactl|ram|rar|rcp|read|readarray|readonly|reboot|rename|renice|remsync|rev|rm|rmdir|rsync|screen|scp|sdiff|sed|seq|service|sftp|shift|shopt|shutdown|sleep|slocate|sort|source|split|ssh|stat|strace|su|sudo|sum|suspend|sync|tail|tar|tee|test|time|timeout|times|touch|top|traceroute|trap|tr|tsort|tty|type|ulimit|umask|umount|unalias|uname|unexpand|uniq|units|unrar|unshar|uptime|useradd|userdel|usermod|users|uuencode|uudecode|v|vdir|vi|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yes|zip)(?=$|\s|;|\||&)/,
|
||
lookbehind: true
|
||
},
|
||
'keyword': {
|
||
pattern: /(^|\s|;|\||&)(?:let|:|\.|if|then|else|elif|fi|for|break|continue|while|in|case|function|select|do|done|until|echo|exit|return|set|declare)(?=$|\s|;|\||&)/,
|
||
lookbehind: true
|
||
},
|
||
'boolean': {
|
||
pattern: /(^|\s|;|\||&)(?:true|false)(?=$|\s|;|\||&)/,
|
||
lookbehind: true
|
||
},
|
||
'operator': /&&?|\|\|?|==?|!=?|<<<?|>>|<=?|>=?|=~/,
|
||
'punctuation': /\$?\(\(?|\)\)?|\.\.|[{}[\];]/
|
||
};
|
||
|
||
var inside = insideString.variable[1].inside;
|
||
inside['function'] = Prism.languages.bash['function'];
|
||
inside.keyword = Prism.languages.bash.keyword;
|
||
inside.boolean = Prism.languages.bash.boolean;
|
||
inside.operator = Prism.languages.bash.operator;
|
||
inside.punctuation = Prism.languages.bash.punctuation;
|
||
})(Prism);
|
||
|
||
Prism.languages.basic = {
|
||
'string': /"(?:""|[!#$%&'()*,\/:;<=>?^_ +\-.A-Z\d])*"/i,
|
||
'comment': {
|
||
pattern: /(?:!|REM\b).+/i,
|
||
inside: {
|
||
'keyword': /^REM/i
|
||
}
|
||
},
|
||
'number': /(?:\b|\B[.-])(?:\d+\.?\d*)(?:E[+-]?\d+)?/i,
|
||
'keyword': /\b(?:AS|BEEP|BLOAD|BSAVE|CALL(?: ABSOLUTE)?|CASE|CHAIN|CHDIR|CLEAR|CLOSE|CLS|COM|COMMON|CONST|DATA|DECLARE|DEF(?: FN| SEG|DBL|INT|LNG|SNG|STR)|DIM|DO|DOUBLE|ELSE|ELSEIF|END|ENVIRON|ERASE|ERROR|EXIT|FIELD|FILES|FOR|FUNCTION|GET|GOSUB|GOTO|IF|INPUT|INTEGER|IOCTL|KEY|KILL|LINE INPUT|LOCATE|LOCK|LONG|LOOP|LSET|MKDIR|NAME|NEXT|OFF|ON(?: COM| ERROR| KEY| TIMER)?|OPEN|OPTION BASE|OUT|POKE|PUT|READ|REDIM|REM|RESTORE|RESUME|RETURN|RMDIR|RSET|RUN|SHARED|SINGLE|SELECT CASE|SHELL|SLEEP|STATIC|STEP|STOP|STRING|SUB|SWAP|SYSTEM|THEN|TIMER|TO|TROFF|TRON|TYPE|UNLOCK|UNTIL|USING|VIEW PRINT|WAIT|WEND|WHILE|WRITE)(?:\$|\b)/i,
|
||
'function': /\b(?:ABS|ACCESS|ACOS|ANGLE|AREA|ARITHMETIC|ARRAY|ASIN|ASK|AT|ATN|BASE|BEGIN|BREAK|CAUSE|CEIL|CHR|CLIP|COLLATE|COLOR|CON|COS|COSH|COT|CSC|DATE|DATUM|DEBUG|DECIMAL|DEF|DEG|DEGREES|DELETE|DET|DEVICE|DISPLAY|DOT|ELAPSED|EPS|ERASABLE|EXLINE|EXP|EXTERNAL|EXTYPE|FILETYPE|FIXED|FP|GO|GRAPH|HANDLER|IDN|IMAGE|IN|INT|INTERNAL|IP|IS|KEYED|LBOUND|LCASE|LEFT|LEN|LENGTH|LET|LINE|LINES|LOG|LOG10|LOG2|LTRIM|MARGIN|MAT|MAX|MAXNUM|MID|MIN|MISSING|MOD|NATIVE|NUL|NUMERIC|OF|OPTION|ORD|ORGANIZATION|OUTIN|OUTPUT|PI|POINT|POINTER|POINTS|POS|PRINT|PROGRAM|PROMPT|RAD|RADIANS|RANDOMIZE|RECORD|RECSIZE|RECTYPE|RELATIVE|REMAINDER|REPEAT|REST|RETRY|REWRITE|RIGHT|RND|ROUND|RTRIM|SAME|SEC|SELECT|SEQUENTIAL|SET|SETTER|SGN|SIN|SINH|SIZE|SKIP|SQR|STANDARD|STATUS|STR|STREAM|STYLE|TAB|TAN|TANH|TEMPLATE|TEXT|THERE|TIME|TIMEOUT|TRACE|TRANSFORM|TRUNCATE|UBOUND|UCASE|USE|VAL|VARIABLE|VIEWPORT|WHEN|WINDOW|WITH|ZER|ZONEWIDTH)(?:\$|\b)/i,
|
||
'operator': /<[=>]?|>=?|[+\-*\/^=&]|\b(?:AND|EQV|IMP|NOT|OR|XOR)\b/i,
|
||
'punctuation': /[,;:()]/
|
||
};
|
||
(function (Prism) {
|
||
var variable = /%%?[~:\w]+%?|!\S+!/;
|
||
var parameter = {
|
||
pattern: /\/[a-z?]+(?=[ :]|$):?|-[a-z]\b|--[a-z-]+\b/im,
|
||
alias: 'attr-name',
|
||
inside: {
|
||
'punctuation': /:/
|
||
}
|
||
};
|
||
var string = /"[^"]*"/;
|
||
var number = /(?:\b|-)\d+\b/;
|
||
|
||
Prism.languages.batch = {
|
||
'comment': [
|
||
/^::.*/m,
|
||
{
|
||
pattern: /((?:^|[&(])[ \t]*)rem\b(?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'label': {
|
||
pattern: /^:.*/m,
|
||
alias: 'property'
|
||
},
|
||
'command': [
|
||
{
|
||
// FOR command
|
||
pattern: /((?:^|[&(])[ \t]*)for(?: ?\/[a-z?](?:[ :](?:"[^"]*"|\S+))?)* \S+ in \([^)]+\) do/im,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': /^for\b|\b(?:in|do)\b/i,
|
||
'string': string,
|
||
'parameter': parameter,
|
||
'variable': variable,
|
||
'number': number,
|
||
'punctuation': /[()',]/
|
||
}
|
||
},
|
||
{
|
||
// IF command
|
||
pattern: /((?:^|[&(])[ \t]*)if(?: ?\/[a-z?](?:[ :](?:"[^"]*"|\S+))?)* (?:not )?(?:cmdextversion \d+|defined \w+|errorlevel \d+|exist \S+|(?:"[^"]*"|\S+)?(?:==| (?:equ|neq|lss|leq|gtr|geq) )(?:"[^"]*"|\S+))/im,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': /^if\b|\b(?:not|cmdextversion|defined|errorlevel|exist)\b/i,
|
||
'string': string,
|
||
'parameter': parameter,
|
||
'variable': variable,
|
||
'number': number,
|
||
'operator': /\^|==|\b(?:equ|neq|lss|leq|gtr|geq)\b/i
|
||
}
|
||
},
|
||
{
|
||
// ELSE command
|
||
pattern: /((?:^|[&()])[ \t]*)else\b/im,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': /^else\b/i
|
||
}
|
||
},
|
||
{
|
||
// SET command
|
||
pattern: /((?:^|[&(])[ \t]*)set(?: ?\/[a-z](?:[ :](?:"[^"]*"|\S+))?)* (?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': /^set\b/i,
|
||
'string': string,
|
||
'parameter': parameter,
|
||
'variable': [
|
||
variable,
|
||
/\w+(?=(?:[*\/%+\-&^|]|<<|>>)?=)/
|
||
],
|
||
'number': number,
|
||
'operator': /[*\/%+\-&^|]=?|<<=?|>>=?|[!~_=]/,
|
||
'punctuation': /[()',]/
|
||
}
|
||
},
|
||
{
|
||
// Other commands
|
||
pattern: /((?:^|[&(])[ \t]*@?)\w+\b(?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': /^\w+\b/i,
|
||
'string': string,
|
||
'parameter': parameter,
|
||
'label': {
|
||
pattern: /(^\s*):\S+/m,
|
||
lookbehind: true,
|
||
alias: 'property'
|
||
},
|
||
'variable': variable,
|
||
'number': number,
|
||
'operator': /\^/
|
||
}
|
||
}
|
||
],
|
||
'operator': /[&@]/,
|
||
'punctuation': /[()']/
|
||
};
|
||
}(Prism));
|
||
Prism.languages.c = Prism.languages.extend('clike', {
|
||
'keyword': /\b(asm|typeof|inline|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|union|unsigned|void|volatile|while)\b/,
|
||
'operator': /\-[>-]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|?\||[~^%?*\/]/,
|
||
'number': /\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)[ful]*\b/i
|
||
});
|
||
|
||
Prism.languages.insertBefore('c', 'string', {
|
||
'macro': {
|
||
// allow for multiline macro definitions
|
||
// spaces after the # character compile fine with gcc
|
||
pattern: /(^\s*)#\s*[a-z]+([^\r\n\\]|\\.|\\(?:\r\n?|\n))*/im,
|
||
lookbehind: true,
|
||
alias: 'property',
|
||
inside: {
|
||
// highlight the path of the include statement as a string
|
||
'string': {
|
||
pattern: /(#\s*include\s*)(<.+?>|("|')(\\?.)+?\3)/,
|
||
lookbehind: true
|
||
},
|
||
// highlight macro directives as keywords
|
||
'directive': {
|
||
pattern: /(#\s*)\b(define|elif|else|endif|error|ifdef|ifndef|if|import|include|line|pragma|undef|using)\b/,
|
||
lookbehind: true,
|
||
alias: 'keyword'
|
||
}
|
||
}
|
||
},
|
||
// highlight predefined macros as constants
|
||
'constant': /\b(__FILE__|__LINE__|__DATE__|__TIME__|__TIMESTAMP__|__func__|EOF|NULL|stdin|stdout|stderr)\b/
|
||
});
|
||
|
||
delete Prism.languages.c['class-name'];
|
||
delete Prism.languages.c['boolean'];
|
||
|
||
Prism.languages.brainfuck = {
|
||
'pointer': {
|
||
pattern: /<|>/,
|
||
alias: 'keyword'
|
||
},
|
||
'increment': {
|
||
pattern: /\+/,
|
||
alias: 'inserted'
|
||
},
|
||
'decrement': {
|
||
pattern: /-/,
|
||
alias: 'deleted'
|
||
},
|
||
'branching': {
|
||
pattern: /\[|\]/,
|
||
alias: 'important'
|
||
},
|
||
'operator': /[.,]/,
|
||
'comment': /\S+/
|
||
};
|
||
Prism.languages.bro = {
|
||
|
||
'comment': {
|
||
pattern: /(^|[^\\$])#.*/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'italic': /\b(TODO|FIXME|XXX)\b/
|
||
}
|
||
},
|
||
|
||
'string': {
|
||
pattern: /(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||
greedy: true
|
||
},
|
||
|
||
'boolean': /\b(T|F)\b/,
|
||
|
||
'function': {
|
||
pattern: /(?:function|hook|event) [a-zA-Z0-9_]+(::[a-zA-Z0-9_]+)?/,
|
||
inside: {
|
||
keyword: /^(?:function|hook|event)/
|
||
}
|
||
},
|
||
|
||
'variable': {
|
||
pattern: /(?:global|local) [a-zA-Z0-9_]+/i,
|
||
inside: {
|
||
keyword: /(?:global|local)/
|
||
}
|
||
},
|
||
|
||
'builtin':
|
||
/(@(load(-(sigs|plugin))?|unload|prefixes|ifn?def|else|(end)?if|DIR|FILENAME))|(&?(redef|priority|log|optional|default|add_func|delete_func|expire_func|read_expire|write_expire|create_expire|synchronized|persistent|rotate_interval|rotate_size|encrypt|raw_output|mergeable|group|error_handler|type_column))/,
|
||
|
||
'constant': {
|
||
pattern: /const [a-zA-Z0-9_]+/i,
|
||
inside: {
|
||
keyword: /const/
|
||
}
|
||
},
|
||
|
||
'keyword':
|
||
/\b(break|next|continue|alarm|using|of|add|delete|export|print|return|schedule|when|timeout|addr|any|bool|count|double|enum|file|int|interval|pattern|opaque|port|record|set|string|subnet|table|time|vector|for|if|else|in|module|function)\b/,
|
||
|
||
'operator': /--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&|\|\|?|\?|\*|\/|~|\^|%/,
|
||
|
||
'number': /\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,
|
||
|
||
'punctuation': /[{}[\];(),.:]/
|
||
};
|
||
|
||
Prism.languages.bison = Prism.languages.extend('c', {});
|
||
|
||
Prism.languages.insertBefore('bison', 'comment', {
|
||
'bison': {
|
||
// This should match all the beginning of the file
|
||
// including the prologue(s), the bison declarations and
|
||
// the grammar rules.
|
||
pattern: /^[\s\S]*?%%[\s\S]*?%%/,
|
||
inside: {
|
||
'c': {
|
||
// Allow for one level of nested braces
|
||
pattern: /%\{[\s\S]*?%\}|\{(?:\{[^}]*\}|[^{}])*\}/,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^%?\{|%?\}$/,
|
||
alias: 'punctuation'
|
||
},
|
||
'bison-variable': {
|
||
pattern: /[$@](?:<[^\s>]+>)?[\w$]+/,
|
||
alias: 'variable',
|
||
inside: {
|
||
'punctuation': /<|>/
|
||
}
|
||
},
|
||
rest: Prism.languages.c
|
||
}
|
||
},
|
||
'comment': Prism.languages.c.comment,
|
||
'string': Prism.languages.c.string,
|
||
'property': /\S+(?=:)/,
|
||
'keyword': /%\w+/,
|
||
'number': {
|
||
pattern: /(^|[^@])\b(?:0x[\da-f]+|\d+)/i,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /%[%?]|[|:;\[\]<>]/
|
||
}
|
||
}
|
||
});
|
||
Prism.languages.csharp = Prism.languages.extend('clike', {
|
||
'keyword': /\b(abstract|as|async|await|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|do|double|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|goto|if|implicit|in|int|interface|internal|is|lock|long|namespace|new|null|object|operator|out|override|params|private|protected|public|readonly|ref|return|sbyte|sealed|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|virtual|void|volatile|while|add|alias|ascending|async|await|descending|dynamic|from|get|global|group|into|join|let|orderby|partial|remove|select|set|value|var|where|yield)\b/,
|
||
'string': [
|
||
{
|
||
pattern: /@("|')(\1\1|\\\1|\\?(?!\1)[\s\S])*\1/,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /("|')(\\?.)*?\1/,
|
||
greedy: true
|
||
}
|
||
],
|
||
'number': /\b-?(0x[\da-f]+|\d*\.?\d+f?)\b/i
|
||
});
|
||
|
||
Prism.languages.insertBefore('csharp', 'keyword', {
|
||
'generic-method': {
|
||
pattern: /[a-z0-9_]+\s*<[^>\r\n]+?>\s*(?=\()/i,
|
||
alias: 'function',
|
||
inside: {
|
||
keyword: Prism.languages.csharp.keyword,
|
||
punctuation: /[<>(),.:]/
|
||
}
|
||
},
|
||
'preprocessor': {
|
||
pattern: /(^\s*)#.*/m,
|
||
lookbehind: true,
|
||
alias: 'property',
|
||
inside: {
|
||
// highlight preprocessor directives as keywords
|
||
'directive': {
|
||
pattern: /(\s*#)\b(define|elif|else|endif|endregion|error|if|line|pragma|region|undef|warning)\b/,
|
||
lookbehind: true,
|
||
alias: 'keyword'
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
Prism.languages.cpp = Prism.languages.extend('c', {
|
||
'keyword': /\b(alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|class|compl|const|constexpr|const_cast|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|float|for|friend|goto|if|inline|int|long|mutable|namespace|new|noexcept|nullptr|operator|private|protected|public|register|reinterpret_cast|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,
|
||
'boolean': /\b(true|false)\b/,
|
||
'operator': /[-+]{1,2}|!=?|<{1,2}=?|>{1,2}=?|\->|:{1,2}|={1,2}|\^|~|%|&{1,2}|\|?\||\?|\*|\/|\b(and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/
|
||
});
|
||
|
||
Prism.languages.insertBefore('cpp', 'keyword', {
|
||
'class-name': {
|
||
pattern: /(class\s+)[a-z0-9_]+/i,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
(function(Prism) {
|
||
|
||
// Ignore comments starting with { to privilege string interpolation highlighting
|
||
var comment = /#(?!\{).+/,
|
||
interpolation = {
|
||
pattern: /#\{[^}]+\}/,
|
||
alias: 'variable'
|
||
};
|
||
|
||
Prism.languages.coffeescript = Prism.languages.extend('javascript', {
|
||
'comment': comment,
|
||
'string': [
|
||
|
||
// Strings are multiline
|
||
{
|
||
pattern: /'(?:\\?[^\\])*?'/,
|
||
greedy: true
|
||
},
|
||
|
||
{
|
||
// Strings are multiline
|
||
pattern: /"(?:\\?[^\\])*?"/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
}
|
||
],
|
||
'keyword': /\b(and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,
|
||
'class-member': {
|
||
pattern: /@(?!\d)\w+/,
|
||
alias: 'variable'
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('coffeescript', 'comment', {
|
||
'multiline-comment': {
|
||
pattern: /###[\s\S]+?###/,
|
||
alias: 'comment'
|
||
},
|
||
|
||
// Block regexp can contain comments and interpolation
|
||
'block-regex': {
|
||
pattern: /\/{3}[\s\S]*?\/{3}/,
|
||
alias: 'regex',
|
||
inside: {
|
||
'comment': comment,
|
||
'interpolation': interpolation
|
||
}
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('coffeescript', 'string', {
|
||
'inline-javascript': {
|
||
pattern: /`(?:\\?[\s\S])*?`/,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^`|`$/,
|
||
alias: 'punctuation'
|
||
},
|
||
rest: Prism.languages.javascript
|
||
}
|
||
},
|
||
|
||
// Block strings
|
||
'multiline-string': [
|
||
{
|
||
pattern: /'''[\s\S]*?'''/,
|
||
greedy: true,
|
||
alias: 'string'
|
||
},
|
||
{
|
||
pattern: /"""[\s\S]*?"""/,
|
||
greedy: true,
|
||
alias: 'string',
|
||
inside: {
|
||
interpolation: interpolation
|
||
}
|
||
}
|
||
]
|
||
|
||
});
|
||
|
||
Prism.languages.insertBefore('coffeescript', 'keyword', {
|
||
// Object property
|
||
'property': /(?!\d)\w+(?=\s*:(?!:))/
|
||
});
|
||
|
||
delete Prism.languages.coffeescript['template-string'];
|
||
|
||
}(Prism));
|
||
/**
|
||
* Original by Samuel Flores
|
||
*
|
||
* Adds the following new token classes:
|
||
* constant, builtin, variable, symbol, regex
|
||
*/
|
||
(function(Prism) {
|
||
Prism.languages.ruby = Prism.languages.extend('clike', {
|
||
'comment': [
|
||
/#(?!\{[^\r\n]*?\}).*/,
|
||
/^=begin(?:\r?\n|\r)(?:.*(?:\r?\n|\r))*?=end/m
|
||
],
|
||
'keyword': /\b(alias|and|BEGIN|begin|break|case|class|def|define_method|defined|do|each|else|elsif|END|end|ensure|false|for|if|in|module|new|next|nil|not|or|raise|redo|require|rescue|retry|return|self|super|then|throw|true|undef|unless|until|when|while|yield)\b/
|
||
});
|
||
|
||
var interpolation = {
|
||
pattern: /#\{[^}]+\}/,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^#\{|\}$/,
|
||
alias: 'tag'
|
||
},
|
||
rest: Prism.util.clone(Prism.languages.ruby)
|
||
}
|
||
};
|
||
|
||
Prism.languages.insertBefore('ruby', 'keyword', {
|
||
'regex': [
|
||
{
|
||
pattern: /%r([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1[gim]{0,3}/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /%r\((?:[^()\\]|\\[\s\S])*\)[gim]{0,3}/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
// Here we need to specifically allow interpolation
|
||
pattern: /%r\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}[gim]{0,3}/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /%r\[(?:[^\[\]\\]|\\[\s\S])*\][gim]{0,3}/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /%r<(?:[^<>\\]|\\[\s\S])*>[gim]{0,3}/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\\\r\n])+\/[gim]{0,3}(?=\s*($|[\r\n,.;})]))/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
}
|
||
],
|
||
'variable': /[@$]+[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/,
|
||
'symbol': /:[a-zA-Z_][a-zA-Z_0-9]*(?:[?!]|\b)/
|
||
});
|
||
|
||
Prism.languages.insertBefore('ruby', 'number', {
|
||
'builtin': /\b(Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Stat|File|Fixnum|Float|Hash|Integer|IO|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|String|Struct|TMS|Symbol|ThreadGroup|Thread|Time|TrueClass)\b/,
|
||
'constant': /\b[A-Z][a-zA-Z_0-9]*(?:[?!]|\b)/
|
||
});
|
||
|
||
Prism.languages.ruby.string = [
|
||
{
|
||
pattern: /%[qQiIwWxs]?([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /%[qQiIwWxs]?\((?:[^()\\]|\\[\s\S])*\)/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
// Here we need to specifically allow interpolation
|
||
pattern: /%[qQiIwWxs]?\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /%[qQiIwWxs]?\[(?:[^\[\]\\]|\\[\s\S])*\]/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /%[qQiIwWxs]?<(?:[^<>\\]|\\[\s\S])*>/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
},
|
||
{
|
||
pattern: /("|')(#\{[^}]+\}|\\(?:\r?\n|\r)|\\?.)*?\1/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': interpolation
|
||
}
|
||
}
|
||
];
|
||
}(Prism));
|
||
Prism.languages.css.selector = {
|
||
pattern: /[^\{\}\s][^\{\}]*(?=\s*\{)/,
|
||
inside: {
|
||
'pseudo-element': /:(?:after|before|first-letter|first-line|selection)|::[-\w]+/,
|
||
'pseudo-class': /:[-\w]+(?:\(.*\))?/,
|
||
'class': /\.[-:\.\w]+/,
|
||
'id': /#[-:\.\w]+/,
|
||
'attribute': /\[[^\]]+\]/
|
||
}
|
||
};
|
||
|
||
Prism.languages.insertBefore('css', 'function', {
|
||
'hexcode': /#[\da-f]{3,6}/i,
|
||
'entity': /\\[\da-f]{1,8}/i,
|
||
'number': /[\d%\.]+/
|
||
});
|
||
Prism.languages.d = Prism.languages.extend('clike', {
|
||
'string': [
|
||
// r"", x""
|
||
/\b[rx]"(\\.|[^\\"])*"[cwd]?/,
|
||
// q"[]", q"()", q"<>", q"{}"
|
||
/\bq"(?:\[[\s\S]*?\]|\([\s\S]*?\)|<[\s\S]*?>|\{[\s\S]*?\})"/,
|
||
// q"IDENT
|
||
// ...
|
||
// IDENT"
|
||
/\bq"([_a-zA-Z][_a-zA-Z\d]*)(?:\r?\n|\r)[\s\S]*?(?:\r?\n|\r)\1"/,
|
||
// q"//", q"||", etc.
|
||
/\bq"(.)[\s\S]*?\1"/,
|
||
// Characters
|
||
/'(?:\\'|\\?[^']+)'/,
|
||
|
||
/(["`])(\\.|(?!\1)[^\\])*\1[cwd]?/
|
||
],
|
||
|
||
'number': [
|
||
// The lookbehind and the negative look-ahead try to prevent bad highlighting of the .. operator
|
||
// Hexadecimal numbers must be handled separately to avoid problems with exponent "e"
|
||
/\b0x\.?[a-f\d_]+(?:(?!\.\.)\.[a-f\d_]*)?(?:p[+-]?[a-f\d_]+)?[ulfi]*/i,
|
||
{
|
||
pattern: /((?:\.\.)?)(?:\b0b\.?|\b|\.)\d[\d_]*(?:(?!\.\.)\.[\d_]*)?(?:e[+-]?\d[\d_]*)?[ulfi]*/i,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
|
||
// In order: $, keywords and special tokens, globally defined symbols
|
||
'keyword': /\$|\b(?:abstract|alias|align|asm|assert|auto|body|bool|break|byte|case|cast|catch|cdouble|cent|cfloat|char|class|const|continue|creal|dchar|debug|default|delegate|delete|deprecated|do|double|else|enum|export|extern|false|final|finally|float|for|foreach|foreach_reverse|function|goto|idouble|if|ifloat|immutable|import|inout|int|interface|invariant|ireal|lazy|long|macro|mixin|module|new|nothrow|null|out|override|package|pragma|private|protected|public|pure|real|ref|return|scope|shared|short|static|struct|super|switch|synchronized|template|this|throw|true|try|typedef|typeid|typeof|ubyte|ucent|uint|ulong|union|unittest|ushort|version|void|volatile|wchar|while|with|__(?:(?:FILE|MODULE|LINE|FUNCTION|PRETTY_FUNCTION|DATE|EOF|TIME|TIMESTAMP|VENDOR|VERSION)__|gshared|traits|vector|parameters)|string|wstring|dstring|size_t|ptrdiff_t)\b/,
|
||
'operator': /\|[|=]?|&[&=]?|\+[+=]?|-[-=]?|\.?\.\.|=[>=]?|!(?:i[ns]\b|<>?=?|>=?|=)?|\bi[ns]\b|(?:<[<>]?|>>?>?|\^\^|[*\/%^~])=?/
|
||
});
|
||
|
||
|
||
Prism.languages.d.comment = [
|
||
// Shebang
|
||
/^\s*#!.+/,
|
||
// /+ +/
|
||
{
|
||
// Allow one level of nesting
|
||
pattern: /(^|[^\\])\/\+(?:\/\+[\s\S]*?\+\/|[\s\S])*?\+\//,
|
||
lookbehind: true
|
||
}
|
||
].concat(Prism.languages.d.comment);
|
||
|
||
Prism.languages.insertBefore('d', 'comment', {
|
||
'token-string': {
|
||
// Allow one level of nesting
|
||
pattern: /\bq\{(?:|\{[^}]*\}|[^}])*\}/,
|
||
alias: 'string'
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('d', 'keyword', {
|
||
'property': /\B@\w*/
|
||
});
|
||
|
||
Prism.languages.insertBefore('d', 'function', {
|
||
'register': {
|
||
// Iasm registers
|
||
pattern: /\b(?:[ABCD][LHX]|E[ABCD]X|E?(?:BP|SP|DI|SI)|[ECSDGF]S|CR[0234]|DR[012367]|TR[3-7]|X?MM[0-7]|R[ABCD]X|[BS]PL|R[BS]P|[DS]IL|R[DS]I|R(?:[89]|1[0-5])[BWD]?|XMM(?:[89]|1[0-5])|YMM(?:1[0-5]|\d))\b|\bST(?:\([0-7]\)|\b)/,
|
||
alias: 'variable'
|
||
}
|
||
});
|
||
Prism.languages.dart = Prism.languages.extend('clike', {
|
||
'string': [
|
||
{
|
||
pattern: /r?("""|''')[\s\S]*?\1/,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /r?("|')(\\?.)*?\1/,
|
||
greedy: true
|
||
}
|
||
],
|
||
'keyword': [
|
||
/\b(?:async|sync|yield)\*/,
|
||
/\b(?:abstract|assert|async|await|break|case|catch|class|const|continue|default|deferred|do|dynamic|else|enum|export|external|extends|factory|final|finally|for|get|if|implements|import|in|library|new|null|operator|part|rethrow|return|set|static|super|switch|this|throw|try|typedef|var|void|while|with|yield)\b/
|
||
],
|
||
'operator': /\bis!|\b(?:as|is)\b|\+\+|--|&&|\|\||<<=?|>>=?|~(?:\/=?)?|[+\-*\/%&^|=!<>]=?|\?/
|
||
});
|
||
|
||
Prism.languages.insertBefore('dart','function',{
|
||
'metadata': {
|
||
pattern: /@\w+/,
|
||
alias: 'symbol'
|
||
}
|
||
});
|
||
// Django/Jinja2 syntax definition for Prism.js <http://prismjs.com> syntax highlighter.
|
||
// Mostly it works OK but can paint code incorrectly on complex html/template tag combinations.
|
||
|
||
var _django_template = {
|
||
'property': {
|
||
pattern: /(?:{{|{%)[\s\S]*?(?:%}|}})/g,
|
||
greedy: true,
|
||
inside: {
|
||
'string': {
|
||
pattern: /("|')(?:\\\\|\\?[^\\\r\n])*?\1/,
|
||
greedy: true
|
||
},
|
||
'keyword': /\b(?:\||load|verbatim|widthratio|ssi|firstof|for|url|ifchanged|csrf_token|lorem|ifnotequal|autoescape|now|templatetag|debug|cycle|ifequal|regroup|comment|filter|endfilter|if|spaceless|with|extends|block|include|else|empty|endif|endfor|as|endblock|endautoescape|endverbatim|trans|endtrans|[Tt]rue|[Ff]alse|[Nn]one|in|is|static|macro|endmacro|call|endcall|set|endset|raw|endraw)\b/,
|
||
'operator' : /[-+=]=?|!=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]|\b(?:or|and|not)\b/,
|
||
'function': /\b(?:_|abs|add|addslashes|attr|batch|callable|capfirst|capitalize|center|count|cut|d|date|default|default_if_none|defined|dictsort|dictsortreversed|divisibleby|e|equalto|escape|escaped|escapejs|even|filesizeformat|first|float|floatformat|force_escape|forceescape|format|get_digit|groupby|indent|int|iriencode|iterable|join|last|length|length_is|linebreaks|linebreaksbr|linenumbers|list|ljust|lower|make_list|map|mapping|number|odd|phone2numeric|pluralize|pprint|random|reject|rejectattr|removetags|replace|reverse|rjust|round|safe|safeseq|sameas|select|selectattr|sequence|slice|slugify|sort|string|stringformat|striptags|sum|time|timesince|timeuntil|title|trim|truncate|truncatechars|truncatechars_html|truncatewords|truncatewords_html|undefined|unordered_list|upper|urlencode|urlize|urlizetrunc|wordcount|wordwrap|xmlattr|yesno)\b/,
|
||
'important': /\b-?\d+(?:\.\d+)?\b/,
|
||
'variable': /\b\w+?\b/,
|
||
'punctuation' : /[[\];(),.:]/
|
||
}
|
||
}
|
||
};
|
||
|
||
Prism.languages.django = Prism.languages.extend('markup', {'comment': /(?:<!--|{#)[\s\S]*?(?:#}|-->)/});
|
||
// Updated html tag pattern to allow template tags inside html tags
|
||
Prism.languages.django.tag.pattern = /<\/?(?!\d)[^\s>\/=$<]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\s\S])*\1|[^>=]+))?)*\s*\/?>/i;
|
||
Prism.languages.insertBefore('django', 'entity', _django_template);
|
||
Prism.languages.insertBefore('inside', 'tag', _django_template, Prism.languages.django.tag);
|
||
|
||
if (Prism.languages.javascript) {
|
||
// Combine js code and template tags painting inside <script> blocks
|
||
Prism.languages.insertBefore('inside', 'string', _django_template, Prism.languages.django.script);
|
||
Prism.languages.django.script.inside.string.inside = _django_template;
|
||
}
|
||
if (Prism.languages.css) {
|
||
// Combine css code and template tags painting inside <style> blocks
|
||
Prism.languages.insertBefore('inside', 'atrule', {'tag': _django_template.property}, Prism.languages.django.style);
|
||
Prism.languages.django.style.inside.string.inside = _django_template;
|
||
}
|
||
|
||
// Add an Jinja2 alias
|
||
Prism.languages.jinja2 = Prism.languages.django;
|
||
|
||
Prism.languages.diff = {
|
||
'coord': [
|
||
// Match all kinds of coord lines (prefixed by "+++", "---" or "***").
|
||
/^(?:\*{3}|-{3}|\+{3}).*$/m,
|
||
// Match "@@ ... @@" coord lines in unified diff.
|
||
/^@@.*@@$/m,
|
||
// Match coord lines in normal diff (starts with a number).
|
||
/^\d+.*$/m
|
||
],
|
||
|
||
// Match inserted and deleted lines. Support both +/- and >/< styles.
|
||
'deleted': /^[-<].*$/m,
|
||
'inserted': /^[+>].*$/m,
|
||
|
||
// Match "different" lines (prefixed with "!") in context diff.
|
||
'diff': {
|
||
'pattern': /^!(?!!).+$/m,
|
||
'alias': 'important'
|
||
}
|
||
};
|
||
|
||
Prism.languages.docker = {
|
||
'keyword': {
|
||
pattern: /(^\s*)(?:ONBUILD|FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|COPY|VOLUME|USER|WORKDIR|CMD|LABEL|ENTRYPOINT)(?=\s)/mi,
|
||
lookbehind: true
|
||
},
|
||
'string': /("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*?\1/,
|
||
'comment': /#.*/,
|
||
'punctuation': /---|\.\.\.|[:[\]{}\-,|>?]/
|
||
};
|
||
Prism.languages.eiffel = {
|
||
'string': [
|
||
// Aligned-verbatim-strings
|
||
/"([^[]*)\[[\s\S]+?\]\1"/,
|
||
// Non-aligned-verbatim-strings
|
||
/"([^{]*)\{[\s\S]+?\}\1"/,
|
||
// Single-line string
|
||
/"(?:%\s+%|%"|.)*?"/
|
||
],
|
||
// (comments including quoted strings not supported)
|
||
'comment': /--.*/,
|
||
// normal char | special char | char code
|
||
'char': /'(?:%'|.)+?'/,
|
||
'keyword': /\b(?:across|agent|alias|all|and|attached|as|assign|attribute|check|class|convert|create|Current|debug|deferred|detachable|do|else|elseif|end|ensure|expanded|export|external|feature|from|frozen|if|implies|inherit|inspect|invariant|like|local|loop|not|note|obsolete|old|once|or|Precursor|redefine|rename|require|rescue|Result|retry|select|separate|some|then|undefine|until|variant|Void|when|xor)\b/i,
|
||
'boolean': /\b(?:True|False)\b/i,
|
||
'number': [
|
||
// hexa | octal | bin
|
||
/\b0[xcb][\da-f](?:_*[\da-f])*\b/i,
|
||
// Decimal
|
||
/(?:\d(?:_*\d)*)?\.(?:(?:\d(?:_*\d)*)?[eE][+-]?)?\d(?:_*\d)*|\d(?:_*\d)*\.?/
|
||
],
|
||
'punctuation': /:=|<<|>>|\(\||\|\)|->|\.(?=\w)|[{}[\];(),:?]/,
|
||
'operator': /\\\\|\|\.\.\||\.\.|\/[~\/=]?|[><]=?|[-+*^=~]/
|
||
};
|
||
|
||
Prism.languages.elixir = {
|
||
// Negative look-ahead is needed for string interpolation
|
||
// Negative look-behind is needed to avoid highlighting markdown headers in
|
||
// multi-line doc strings
|
||
'comment': {
|
||
pattern: /(^|[^#])#(?![{#]).*/m,
|
||
lookbehind: true
|
||
},
|
||
// ~r"""foo""", ~r'''foo''', ~r/foo/, ~r|foo|, ~r"foo", ~r'foo', ~r(foo), ~r[foo], ~r{foo}, ~r<foo>
|
||
'regex': /~[rR](?:("""|'''|[\/|"'])(?:\\.|(?!\1)[^\\])+\1|\((?:\\\)|[^)])+\)|\[(?:\\\]|[^\]])+\]|\{(?:\\\}|[^}])+\}|<(?:\\>|[^>])+>)[uismxfr]*/,
|
||
'string': [
|
||
{
|
||
// ~s"""foo""", ~s'''foo''', ~s/foo/, ~s|foo|, ~s"foo", ~s'foo', ~s(foo), ~s[foo], ~s{foo}, ~s<foo>
|
||
pattern: /~[cCsSwW](?:("""|'''|[\/|"'])(?:\\.|(?!\1)[^\\])+\1|\((?:\\\)|[^)])+\)|\[(?:\\\]|[^\]])+\]|\{(?:\\\}|#\{[^}]+\}|[^}])+\}|<(?:\\>|[^>])+>)[csa]?/,
|
||
greedy: true,
|
||
inside: {
|
||
// See interpolation below
|
||
}
|
||
},
|
||
{
|
||
pattern: /("""|''')[\s\S]*?\1/,
|
||
greedy: true,
|
||
inside: {
|
||
// See interpolation below
|
||
}
|
||
},
|
||
{
|
||
// Multi-line strings are allowed
|
||
pattern: /("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/,
|
||
greedy: true,
|
||
inside: {
|
||
// See interpolation below
|
||
}
|
||
}
|
||
],
|
||
'atom': {
|
||
// Look-behind prevents bad highlighting of the :: operator
|
||
pattern: /(^|[^:]):\w+/,
|
||
lookbehind: true,
|
||
alias: 'symbol'
|
||
},
|
||
// Look-ahead prevents bad highlighting of the :: operator
|
||
'attr-name': /\w+:(?!:)/,
|
||
'capture': {
|
||
// Look-behind prevents bad highlighting of the && operator
|
||
pattern: /(^|[^&])&(?:[^&\s\d()][^\s()]*|(?=\())/,
|
||
lookbehind: true,
|
||
alias: 'function'
|
||
},
|
||
'argument': {
|
||
// Look-behind prevents bad highlighting of the && operator
|
||
pattern: /(^|[^&])&\d+/,
|
||
lookbehind: true,
|
||
alias: 'variable'
|
||
},
|
||
'attribute': {
|
||
pattern: /@[\S]+/,
|
||
alias: 'variable'
|
||
},
|
||
'number': /\b(?:0[box][a-f\d_]+|\d[\d_]*)(?:\.[\d_]+)?(?:e[+-]?[\d_]+)?\b/i,
|
||
'keyword': /\b(?:after|alias|and|case|catch|cond|def(?:callback|exception|impl|module|p|protocol|struct)?|do|else|end|fn|for|if|import|not|or|require|rescue|try|unless|use|when)\b/,
|
||
'boolean': /\b(?:true|false|nil)\b/,
|
||
'operator': [
|
||
/\bin\b|&&?|\|[|>]?|\\\\|::|\.\.\.?|\+\+?|-[->]?|<[-=>]|>=|!==?|\B!|=(?:==?|[>~])?|[*\/^]/,
|
||
{
|
||
// We don't want to match <<
|
||
pattern: /([^<])<(?!<)/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
// We don't want to match >>
|
||
pattern: /([^>])>(?!>)/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'punctuation': /<<|>>|[.,%\[\]{}()]/
|
||
};
|
||
|
||
Prism.languages.elixir.string.forEach(function(o) {
|
||
o.inside = {
|
||
'interpolation': {
|
||
pattern: /#\{[^}]+\}/,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^#\{|\}$/,
|
||
alias: 'punctuation'
|
||
},
|
||
rest: Prism.util.clone(Prism.languages.elixir)
|
||
}
|
||
}
|
||
};
|
||
});
|
||
|
||
|
||
Prism.languages.erlang = {
|
||
'comment': /%.+/,
|
||
'string': {
|
||
pattern: /"(?:\\?.)*?"/,
|
||
greedy: true
|
||
},
|
||
'quoted-function': {
|
||
pattern: /'(?:\\.|[^'\\])+'(?=\()/,
|
||
alias: 'function'
|
||
},
|
||
'quoted-atom': {
|
||
pattern: /'(?:\\.|[^'\\])+'/,
|
||
alias: 'atom'
|
||
},
|
||
'boolean': /\b(?:true|false)\b/,
|
||
'keyword': /\b(?:fun|when|case|of|end|if|receive|after|try|catch)\b/,
|
||
'number': [
|
||
/\$\\?./,
|
||
/\d+#[a-z0-9]+/i,
|
||
/(?:\b|-)\d*\.?\d+([Ee][+-]?\d+)?\b/
|
||
],
|
||
'function': /\b[a-z][\w@]*(?=\()/,
|
||
'variable': {
|
||
// Look-behind is used to prevent wrong highlighting of atoms containing "@"
|
||
pattern: /(^|[^@])(?:\b|\?)[A-Z_][\w@]*/,
|
||
lookbehind: true
|
||
},
|
||
'operator': [
|
||
/[=\/<>:]=|=[:\/]=|\+\+?|--?|[=*\/!]|\b(?:bnot|div|rem|band|bor|bxor|bsl|bsr|not|and|or|xor|orelse|andalso)\b/,
|
||
{
|
||
// We don't want to match <<
|
||
pattern: /(^|[^<])<(?!<)/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
// We don't want to match >>
|
||
pattern: /(^|[^>])>(?!>)/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'atom': /\b[a-z][\w@]*/,
|
||
'punctuation': /[()[\]{}:;,.#|]|<<|>>/
|
||
|
||
};
|
||
Prism.languages.fsharp = Prism.languages.extend('clike', {
|
||
'comment': [
|
||
{
|
||
pattern: /(^|[^\\])\(\*[\s\S]*?\*\)/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(^|[^\\:])\/\/.*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'keyword': /\b(?:let|return|use|yield)(?:!\B|\b)|\b(abstract|and|as|assert|base|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|global|if|in|inherit|inline|interface|internal|lazy|match|member|module|mutable|namespace|new|not|null|of|open|or|override|private|public|rec|select|static|struct|then|to|true|try|type|upcast|val|void|when|while|with|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|include|method|mixin|object|parallel|process|protected|pure|sealed|tailcall|trait|virtual|volatile)\b/,
|
||
'string': {
|
||
pattern: /(?:"""[\s\S]*?"""|@"(?:""|[^"])*"|("|')(?:\\\1|\\?(?!\1)[\s\S])*\1)B?/,
|
||
greedy: true
|
||
},
|
||
'number': [
|
||
/\b-?0x[\da-fA-F]+(un|lf|LF)?\b/,
|
||
/\b-?0b[01]+(y|uy)?\b/,
|
||
/\b-?(\d*\.?\d+|\d+\.)([fFmM]|[eE][+-]?\d+)?\b/,
|
||
/\b-?\d+(y|uy|s|us|l|u|ul|L|UL|I)?\b/
|
||
]
|
||
});
|
||
Prism.languages.insertBefore('fsharp', 'keyword', {
|
||
'preprocessor': {
|
||
pattern: /^[^\r\n\S]*#.*/m,
|
||
alias: 'property',
|
||
inside: {
|
||
'directive': {
|
||
pattern: /(\s*#)\b(else|endif|if|light|line|nowarn)\b/,
|
||
lookbehind: true,
|
||
alias: 'keyword'
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
Prism.languages.fortran = {
|
||
'quoted-number': {
|
||
pattern: /[BOZ](['"])[A-F0-9]+\1/i,
|
||
alias: 'number'
|
||
},
|
||
'string': {
|
||
pattern: /(?:\w+_)?(['"])(?:\1\1|&(?:\r\n?|\n)(?:\s*!.+(?:\r\n?|\n))?|(?!\1).)*(?:\1|&)/,
|
||
inside: {
|
||
'comment': {
|
||
pattern: /(&(?:\r\n?|\n)\s*)!.*/,
|
||
lookbehind: true
|
||
}
|
||
}
|
||
},
|
||
'comment': /!.*/,
|
||
'boolean': /\.(?:TRUE|FALSE)\.(?:_\w+)?/i,
|
||
'number': /(?:\b|[+-])(?:\d+(?:\.\d*)?|\.\d+)(?:[ED][+-]?\d+)?(?:_\w+)?/i,
|
||
'keyword': [
|
||
// Types
|
||
/\b(?:INTEGER|REAL|DOUBLE ?PRECISION|COMPLEX|CHARACTER|LOGICAL)\b/i,
|
||
// END statements
|
||
/\b(?:END ?)?(?:BLOCK ?DATA|DO|FILE|FORALL|FUNCTION|IF|INTERFACE|MODULE(?! PROCEDURE)|PROGRAM|SELECT|SUBROUTINE|TYPE|WHERE)\b/i,
|
||
// Statements
|
||
/\b(?:ALLOCATABLE|ALLOCATE|BACKSPACE|CALL|CASE|CLOSE|COMMON|CONTAINS|CONTINUE|CYCLE|DATA|DEALLOCATE|DIMENSION|DO|END|EQUIVALENCE|EXIT|EXTERNAL|FORMAT|GO ?TO|IMPLICIT(?: NONE)?|INQUIRE|INTENT|INTRINSIC|MODULE PROCEDURE|NAMELIST|NULLIFY|OPEN|OPTIONAL|PARAMETER|POINTER|PRINT|PRIVATE|PUBLIC|READ|RETURN|REWIND|SAVE|SELECT|STOP|TARGET|WHILE|WRITE)\b/i,
|
||
// Others
|
||
/\b(?:ASSIGNMENT|DEFAULT|ELEMENTAL|ELSE|ELSEWHERE|ELSEIF|ENTRY|IN|INCLUDE|INOUT|KIND|NULL|ONLY|OPERATOR|OUT|PURE|RECURSIVE|RESULT|SEQUENCE|STAT|THEN|USE)\b/i
|
||
],
|
||
'operator': [
|
||
/\*\*|\/\/|=>|[=\/]=|[<>]=?|::|[+\-*=%]|\.(?:EQ|NE|LT|LE|GT|GE|NOT|AND|OR|EQV|NEQV)\.|\.[A-Z]+\./i,
|
||
{
|
||
// Use lookbehind to prevent confusion with (/ /)
|
||
pattern: /(^|(?!\().)\/(?!\))/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'punctuation': /\(\/|\/\)|[(),;:&]/
|
||
};
|
||
Prism.languages.gherkin = {
|
||
'pystring': {
|
||
pattern: /("""|''')[\s\S]+?\1/,
|
||
alias: 'string'
|
||
},
|
||
'comment': {
|
||
pattern: /((^|\r?\n|\r)[ \t]*)#.*/,
|
||
lookbehind: true
|
||
},
|
||
'tag': {
|
||
pattern: /((^|\r?\n|\r)[ \t]*)@\S*/,
|
||
lookbehind: true
|
||
},
|
||
'feature': {
|
||
pattern: /((^|\r?\n|\r)[ \t]*)(Ability|Ahoy matey!|Arwedd|Aspekt|Besigheid Behoefte|Business Need|Caracteristica|Característica|Egenskab|Egenskap|Eiginleiki|Feature|Fīča|Fitur|Fonctionnalité|Fonksyonalite|Funcionalidade|Funcionalitat|Functionalitate|Funcţionalitate|Funcționalitate|Functionaliteit|Fungsi|Funkcia|Funkcija|Funkcionalitāte|Funkcionalnost|Funkcja|Funksie|Funktionalität|Funktionalitéit|Funzionalità|Hwaet|Hwæt|Jellemző|Karakteristik|laH|Lastnost|Mak|Mogucnost|Mogućnost|Moznosti|Možnosti|OH HAI|Omadus|Ominaisuus|Osobina|Özellik|perbogh|poQbogh malja'|Potrzeba biznesowa|Požadavek|Požiadavka|Pretty much|Qap|Qu'meH 'ut|Savybė|Tính năng|Trajto|Vermoë|Vlastnosť|Właściwość|Značilnost|Δυνατότητα|Λειτουργία|Могућност|Мөмкинлек|Особина|Свойство|Үзенчәлеклелек|Функционал|Функционалност|Функция|Функціонал|תכונה|خاصية|خصوصیت|صلاحیت|کاروبار کی ضرورت|وِیژگی|रूप लेख|ਖਾਸੀਅਤ|ਨਕਸ਼ ਨੁਹਾਰ|ਮੁਹਾਂਦਰਾ|గుణము|ಹೆಚ್ಚಳ|ความต้องการทางธุรกิจ|ความสามารถ|โครงหลัก|기능|フィーチャ|功能|機能):([^:]+(?:\r?\n|\r|$))*/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'important': {
|
||
pattern: /(:)[^\r\n]+/,
|
||
lookbehind: true
|
||
},
|
||
keyword: /[^:\r\n]+:/
|
||
}
|
||
},
|
||
'scenario': {
|
||
pattern: /((^|\r?\n|\r)[ \t]*)(Abstract Scenario|Abstrakt Scenario|Achtergrond|Aer|Ær|Agtergrond|All y'all|Antecedentes|Antecedents|Atburðarás|Atburðarásir|Awww, look mate|B4|Background|Baggrund|Bakgrund|Bakgrunn|Bakgrunnur|Beispiele|Beispiller|Bối cảnh|Cefndir|Cenario|Cenário|Cenario de Fundo|Cenário de Fundo|Cenarios|Cenários|Contesto|Context|Contexte|Contexto|Conto|Contoh|Contone|Dæmi|Dasar|Dead men tell no tales|Delineacao do Cenario|Delineação do Cenário|Dis is what went down|Dữ liệu|Dyagram senaryo|Dyagram Senaryo|Egzanp|Ejemplos|Eksempler|Ekzemploj|Enghreifftiau|Esbozo do escenario|Escenari|Escenario|Esempi|Esquema de l'escenari|Esquema del escenario|Esquema do Cenario|Esquema do Cenário|Examples|EXAMPLZ|Exempel|Exemple|Exemples|Exemplos|First off|Fono|Forgatókönyv|Forgatókönyv vázlat|Fundo|Geçmiş|ghantoH|Grundlage|Hannergrond|Háttér|Heave to|Istorik|Juhtumid|Keadaan|Khung kịch bản|Khung tình huống|Kịch bản|Koncept|Konsep skenario|Kontèks|Kontekst|Kontekstas|Konteksts|Kontext|Konturo de la scenaro|Latar Belakang|lut|lut chovnatlh|lutmey|Lýsing Atburðarásar|Lýsing Dæma|Menggariskan Senario|MISHUN|MISHUN SRSLY|mo'|Náčrt Scenára|Náčrt Scénáře|Náčrt Scenáru|Oris scenarija|Örnekler|Osnova|Osnova Scenára|Osnova scénáře|Osnutek|Ozadje|Paraugs|Pavyzdžiai|Példák|Piemēri|Plan du scénario|Plan du Scénario|Plan senaryo|Plan Senaryo|Plang vum Szenario|Pozadí|Pozadie|Pozadina|Príklady|Příklady|Primer|Primeri|Primjeri|Przykłady|Raamstsenaarium|Reckon it's like|Rerefons|Scenár|Scénář|Scenarie|Scenarij|Scenarijai|Scenarijaus šablonas|Scenariji|Scenārijs|Scenārijs pēc parauga|Scenarijus|Scenario|Scénario|Scenario Amlinellol|Scenario Outline|Scenario Template|Scenariomal|Scenariomall|Scenarios|Scenariu|Scenariusz|Scenaro|Schema dello scenario|Se ðe|Se the|Se þe|Senario|Senaryo|Senaryo deskripsyon|Senaryo Deskripsyon|Senaryo taslağı|Shiver me timbers|Situācija|Situai|Situasie|Situasie Uiteensetting|Skenario|Skenario konsep|Skica|Structura scenariu|Structură scenariu|Struktura scenarija|Stsenaarium|Swa|Swa hwaer swa|Swa hwær swa|Szablon scenariusza|Szenario|Szenariogrundriss|Tapaukset|Tapaus|Tapausaihio|Taust|Tausta|Template Keadaan|Template Senario|Template Situai|The thing of it is|Tình huống|Variantai|Voorbeelde|Voorbeelden|Wharrimean is|Yo\-ho\-ho|You'll wanna|Założenia|Παραδείγματα|Περιγραφή Σεναρίου|Σενάρια|Σενάριο|Υπόβαθρο|Кереш|Контекст|Концепт|Мисаллар|Мисоллар|Основа|Передумова|Позадина|Предистория|Предыстория|Приклади|Пример|Примери|Примеры|Рамка на сценарий|Скица|Структура сценарија|Структура сценария|Структура сценарію|Сценарий|Сценарий структураси|Сценарийның төзелеше|Сценарији|Сценарио|Сценарій|Тарих|Үрнәкләр|דוגמאות|רקע|תבנית תרחיש|תרחיש|الخلفية|الگوی سناریو|امثلة|پس منظر|زمینه|سناریو|سيناريو|سيناريو مخطط|مثالیں|منظر نامے کا خاکہ|منظرنامہ|نمونه ها|उदाहरण|परिदृश्य|परिदृश्य रूपरेखा|पृष्ठभूमि|ਉਦਾਹਰਨਾਂ|ਪਟਕਥਾ|ਪਟਕਥਾ ਢਾਂਚਾ|ਪਟਕਥਾ ਰੂਪ ਰੇਖਾ|ਪਿਛੋਕੜ|ఉదాహరణలు|కథనం|నేపథ్యం|సన్నివేశం|ಉದಾಹರಣೆಗಳು|ಕಥಾಸಾರಾಂಶ|ವಿವರಣೆ|ಹಿನ್ನೆಲೆ|โครงสร้างของเหตุการณ์|ชุดของตัวอย่าง|ชุดของเหตุการณ์|แนวคิด|สรุปเหตุการณ์|เหตุการณ์|배경|시나리오|시나리오 개요|예|サンプル|シナリオ|シナリオアウトライン|シナリオテンプレ|シナリオテンプレート|テンプレ|例|例子|剧本|剧本大纲|劇本|劇本大綱|场景|场景大纲|場景|場景大綱|背景):[^:\r\n]*/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'important': {
|
||
pattern: /(:)[^\r\n]*/,
|
||
lookbehind: true
|
||
},
|
||
keyword: /[^:\r\n]+:/
|
||
}
|
||
},
|
||
'table-body': {
|
||
pattern: /((?:\r?\n|\r)[ \t]*\|.+\|[^\r\n]*)+/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'outline': {
|
||
pattern: /<[^>]+?>/,
|
||
alias: 'variable'
|
||
},
|
||
'td': {
|
||
pattern: /\s*[^\s|][^|]*/,
|
||
alias: 'string'
|
||
},
|
||
'punctuation': /\|/
|
||
}
|
||
},
|
||
'table-head': {
|
||
pattern: /((?:\r?\n|\r)[ \t]*\|.+\|[^\r\n]*)/,
|
||
inside: {
|
||
'th': {
|
||
pattern: /\s*[^\s|][^|]*/,
|
||
alias: 'variable'
|
||
},
|
||
'punctuation': /\|/
|
||
}
|
||
},
|
||
'atrule': {
|
||
pattern: /((?:\r?\n|\r)[ \t]+)('ach|'a|'ej|7|a|A také|A taktiež|A tiež|A zároveň|Aber|Ac|Adott|Akkor|Ak|Aleshores|Ale|Ali|Allora|Alors|Als|Ama|Amennyiben|Amikor|Ampak|an|AN|Ananging|And y'all|And|Angenommen|Anrhegedig a|An|Apabila|Atès|Atesa|Atunci|Avast!|Aye|A|awer|Bagi|Banjur|Bet|Biết|Blimey!|Buh|But at the end of the day I reckon|But y'all|But|BUT|Cal|Când|Cando|Cand|Ce|Cuando|Če|Ða ðe|Ða|Dadas|Dada|Dados|Dado|DaH ghu' bejlu'|dann|Dann|Dano|Dan|Dar|Dat fiind|Data|Date fiind|Date|Dati fiind|Dati|Daţi fiind|Dați fiind|Dato|DEN|Den youse gotta|Dengan|De|Diberi|Diyelim ki|Donada|Donat|Donitaĵo|Do|Dun|Duota|Ðurh|Eeldades|Ef|Eğer ki|Entao|Então|Entón|Entonces|En|Epi|E|És|Etant donnée|Etant donné|Et|Étant données|Étant donnée|Étant donné|Etant données|Etant donnés|Étant donnés|Fakat|Gangway!|Gdy|Gegeben seien|Gegeben sei|Gegeven|Gegewe|ghu' noblu'|Gitt|Given y'all|Given|Givet|Givun|Ha|Cho|I CAN HAZ|In|Ir|It's just unbelievable|I|Ja|Jeśli|Jeżeli|Kadar|Kada|Kad|Kai|Kaj|Když|Keď|Kemudian|Ketika|Khi|Kiedy|Ko|Kuid|Kui|Kun|Lan|latlh|Le sa a|Let go and haul|Le|Lè sa a|Lè|Logo|Lorsqu'<|Lorsque|mä|Maar|Mais|Mając|Majd|Maka|Manawa|Mas|Ma|Menawa|Men|Mutta|Nalikaning|Nalika|Nanging|Når|När|Nato|Nhưng|Niin|Njuk|O zaman|Og|Och|Oletetaan|Onda|Ond|Oraz|Pak|Pero|Però|Podano|Pokiaľ|Pokud|Potem|Potom|Privzeto|Pryd|qaSDI'|Quando|Quand|Quan|Så|Sed|Se|Siis|Sipoze ke|Sipoze Ke|Sipoze|Si|Şi|Și|Soit|Stel|Tada|Tad|Takrat|Tak|Tapi|Ter|Tetapi|Tha the|Tha|Then y'all|Then|Thì|Thurh|Toda|Too right|ugeholl|Und|Un|Và|vaj|Vendar|Ve|wann|Wanneer|WEN|Wenn|When y'all|When|Wtedy|Wun|Y'know|Yeah nah|Yna|Youse know like when|Youse know when youse got|Y|Za predpokladu|Za předpokladu|Zadani|Zadano|Zadan|Zadate|Zadato|Zakładając|Zaradi|Zatati|Þa þe|Þa|Þá|Þegar|Þurh|Αλλά|Δεδομένου|Και|Όταν|Τότε|А також|Агар|Але|Али|Аммо|А|Әгәр|Әйтик|Әмма|Бирок|Ва|Вә|Дадено|Дано|Допустим|Если|Задате|Задати|Задато|И|І|К тому же|Када|Кад|Когато|Когда|Коли|Ләкин|Лекин|Нәтиҗәдә|Нехай|Но|Онда|Припустимо, що|Припустимо|Пусть|Также|Та|Тогда|Тоді|То|Унда|Һәм|Якщо|אבל|אזי|אז|בהינתן|וגם|כאשר|آنگاه|اذاً|اگر|اما|اور|با فرض|بالفرض|بفرض|پھر|تب|ثم|جب|عندما|فرض کیا|لكن|لیکن|متى|هنگامی|و|अगर|और|कदा|किन्तु|चूंकि|जब|तथा|तदा|तब|परन्तु|पर|यदि|ਅਤੇ|ਜਦੋਂ|ਜਿਵੇਂ ਕਿ|ਜੇਕਰ|ਤਦ|ਪਰ|అప్పుడు|ఈ పరిస్థితిలో|కాని|చెప్పబడినది|మరియు|ಆದರೆ|ನಂತರ|ನೀಡಿದ|ಮತ್ತು|ಸ್ಥಿತಿಯನ್ನು|กำหนดให้|ดังนั้น|แต่|เมื่อ|และ|그러면<|그리고<|단<|만약<|만일<|먼저<|조건<|하지만<|かつ<|しかし<|ただし<|ならば<|もし<|並且<|但し<|但是<|假如<|假定<|假設<|假设<|前提<|同时<|同時<|并且<|当<|當<|而且<|那么<|那麼<)(?=[ \t]+)/,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
pattern: /("(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*')/,
|
||
inside: {
|
||
'outline': {
|
||
pattern: /<[^>]+?>/,
|
||
alias: 'variable'
|
||
}
|
||
}
|
||
},
|
||
'outline': {
|
||
pattern: /<[^>]+?>/,
|
||
alias: 'variable'
|
||
}
|
||
};
|
||
|
||
Prism.languages.git = {
|
||
/*
|
||
* A simple one line comment like in a git status command
|
||
* For instance:
|
||
* $ git status
|
||
* # On branch infinite-scroll
|
||
* # Your branch and 'origin/sharedBranches/frontendTeam/infinite-scroll' have diverged,
|
||
* # and have 1 and 2 different commits each, respectively.
|
||
* nothing to commit (working directory clean)
|
||
*/
|
||
'comment': /^#.*/m,
|
||
|
||
/*
|
||
* Regexp to match the changed lines in a git diff output. Check the example below.
|
||
*/
|
||
'deleted': /^[-–].*/m,
|
||
'inserted': /^\+.*/m,
|
||
|
||
/*
|
||
* a string (double and simple quote)
|
||
*/
|
||
'string': /("|')(\\?.)*?\1/m,
|
||
|
||
/*
|
||
* a git command. It starts with a random prompt finishing by a $, then "git" then some other parameters
|
||
* For instance:
|
||
* $ git add file.txt
|
||
*/
|
||
'command': {
|
||
pattern: /^.*\$ git .*$/m,
|
||
inside: {
|
||
/*
|
||
* A git command can contain a parameter starting by a single or a double dash followed by a string
|
||
* For instance:
|
||
* $ git diff --cached
|
||
* $ git log -p
|
||
*/
|
||
'parameter': /\s(--|-)\w+/m
|
||
}
|
||
},
|
||
|
||
/*
|
||
* Coordinates displayed in a git diff command
|
||
* For instance:
|
||
* $ git diff
|
||
* diff --git file.txt file.txt
|
||
* index 6214953..1d54a52 100644
|
||
* --- file.txt
|
||
* +++ file.txt
|
||
* @@ -1 +1,2 @@
|
||
* -Here's my tetx file
|
||
* +Here's my text file
|
||
* +And this is the second line
|
||
*/
|
||
'coord': /^@@.*@@$/m,
|
||
|
||
/*
|
||
* Match a "commit [SHA1]" line in a git log output.
|
||
* For instance:
|
||
* $ git log
|
||
* commit a11a14ef7e26f2ca62d4b35eac455ce636d0dc09
|
||
* Author: lgiraudel
|
||
* Date: Mon Feb 17 11:18:34 2014 +0100
|
||
*
|
||
* Add of a new line
|
||
*/
|
||
'commit_sha1': /^commit \w{40}$/m
|
||
};
|
||
|
||
Prism.languages.glsl = Prism.languages.extend('clike', {
|
||
'comment': [
|
||
/\/\*[\s\S]*?\*\//,
|
||
/\/\/(?:\\(?:\r\n|[\s\S])|.)*/
|
||
],
|
||
'number': /\b(?:0x[\da-f]+|(?:\.\d+|\d+\.?\d*)(?:e[+-]?\d+)?)[ulf]*\b/i,
|
||
'keyword': /\b(?:attribute|const|uniform|varying|buffer|shared|coherent|volatile|restrict|readonly|writeonly|atomic_uint|layout|centroid|flat|smooth|noperspective|patch|sample|break|continue|do|for|while|switch|case|default|if|else|subroutine|in|out|inout|float|double|int|void|bool|true|false|invariant|precise|discard|return|d?mat[234](?:x[234])?|[ibdu]?vec[234]|uint|lowp|mediump|highp|precision|[iu]?sampler[123]D|[iu]?samplerCube|sampler[12]DShadow|samplerCubeShadow|[iu]?sampler[12]DArray|sampler[12]DArrayShadow|[iu]?sampler2DRect|sampler2DRectShadow|[iu]?samplerBuffer|[iu]?sampler2DMS(?:Array)?|[iu]?samplerCubeArray|samplerCubeArrayShadow|[iu]?image[123]D|[iu]?image2DRect|[iu]?imageCube|[iu]?imageBuffer|[iu]?image[12]DArray|[iu]?imageCubeArray|[iu]?image2DMS(?:Array)?|struct|common|partition|active|asm|class|union|enum|typedef|template|this|resource|goto|inline|noinline|public|static|extern|external|interface|long|short|half|fixed|unsigned|superp|input|output|hvec[234]|fvec[234]|sampler3DRect|filter|sizeof|cast|namespace|using)\b/
|
||
});
|
||
|
||
Prism.languages.insertBefore('glsl', 'comment', {
|
||
'preprocessor': {
|
||
pattern: /(^[ \t]*)#(?:(?:define|undef|if|ifdef|ifndef|else|elif|endif|error|pragma|extension|version|line)\b)?/m,
|
||
lookbehind: true,
|
||
alias: 'builtin'
|
||
}
|
||
});
|
||
Prism.languages.go = Prism.languages.extend('clike', {
|
||
'keyword': /\b(break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,
|
||
'builtin': /\b(bool|byte|complex(64|128)|error|float(32|64)|rune|string|u?int(8|16|32|64|)|uintptr|append|cap|close|complex|copy|delete|imag|len|make|new|panic|print(ln)?|real|recover)\b/,
|
||
'boolean': /\b(_|iota|nil|true|false)\b/,
|
||
'operator': /[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\.\.\./,
|
||
'number': /\b(-?(0x[a-f\d]+|(\d+\.?\d*|\.\d+)(e[-+]?\d+)?)i?)\b/i,
|
||
'string': {
|
||
pattern: /("|'|`)(\\?.|\r|\n)*?\1/,
|
||
greedy: true
|
||
}
|
||
});
|
||
delete Prism.languages.go['class-name'];
|
||
|
||
Prism.languages.graphql = {
|
||
'comment': /#.*/,
|
||
'string': {
|
||
pattern: /"(?:\\.|[^\\"])*"/,
|
||
greedy: true
|
||
},
|
||
'number': /(?:\B-|\b)\d+(?:\.\d+)?(?:[eE][+-]?\d+)?\b/,
|
||
'boolean': /\b(?:true|false)\b/,
|
||
'variable': /\$[a-z_]\w*/i,
|
||
'directive': {
|
||
pattern: /@[a-z_]\w*/i,
|
||
alias: 'function'
|
||
},
|
||
'attr-name': /[a-z_]\w*(?=\s*:)/i,
|
||
'keyword': [
|
||
{
|
||
pattern: /(fragment\s+(?!on)[a-z_]\w*\s+|\.\.\.\s*)on\b/,
|
||
lookbehind: true
|
||
},
|
||
/\b(?:query|fragment|mutation)\b/
|
||
],
|
||
'operator': /!|=|\.{3}/,
|
||
'punctuation': /[!(){}\[\]:=,]/
|
||
};
|
||
Prism.languages.groovy = Prism.languages.extend('clike', {
|
||
'keyword': /\b(as|def|in|abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|native|new|package|private|protected|public|return|short|static|strictfp|super|switch|synchronized|this|throw|throws|trait|transient|try|void|volatile|while)\b/,
|
||
'string': [
|
||
{
|
||
pattern: /("""|''')[\s\S]*?\1|(\$\/)(\$\/\$|[\s\S])*?\/\$/,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /("|'|\/)(?:\\?.)*?\1/,
|
||
greedy: true
|
||
}
|
||
],
|
||
'number': /\b(?:0b[01_]+|0x[\da-f_]+(?:\.[\da-f_p\-]+)?|[\d_]+(?:\.[\d_]+)?(?:e[+-]?[\d]+)?)[glidf]?\b/i,
|
||
'operator': {
|
||
pattern: /(^|[^.])(~|==?~?|\?[.:]?|\*(?:[.=]|\*=?)?|\.[@&]|\.\.<|\.{1,2}(?!\.)|-[-=>]?|\+[+=]?|!=?|<(?:<=?|=>?)?|>(?:>>?=?|=)?|&[&=]?|\|[|=]?|\/=?|\^=?|%=?)/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /\.+|[{}[\];(),:$]/
|
||
});
|
||
|
||
Prism.languages.insertBefore('groovy', 'string', {
|
||
'shebang': {
|
||
pattern: /#!.+/,
|
||
alias: 'comment'
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('groovy', 'punctuation', {
|
||
'spock-block': /\b(setup|given|when|then|and|cleanup|expect|where):/
|
||
});
|
||
|
||
Prism.languages.insertBefore('groovy', 'function', {
|
||
'annotation': {
|
||
alias: 'punctuation',
|
||
pattern: /(^|[^.])@\w+/,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
// Handle string interpolation
|
||
Prism.hooks.add('wrap', function(env) {
|
||
if (env.language === 'groovy' && env.type === 'string') {
|
||
var delimiter = env.content[0];
|
||
|
||
if (delimiter != "'") {
|
||
var pattern = /([^\\])(\$(\{.*?\}|[\w\.]+))/;
|
||
if (delimiter === '$') {
|
||
pattern = /([^\$])(\$(\{.*?\}|[\w\.]+))/;
|
||
}
|
||
|
||
// To prevent double HTML-encoding we have to decode env.content first
|
||
env.content = env.content.replace(/</g, '<').replace(/&/g, '&');
|
||
|
||
env.content = Prism.highlight(env.content, {
|
||
'expression': {
|
||
pattern: pattern,
|
||
lookbehind: true,
|
||
inside: Prism.languages.groovy
|
||
}
|
||
});
|
||
|
||
env.classes.push(delimiter === '/' ? 'regex' : 'gstring');
|
||
}
|
||
}
|
||
});
|
||
|
||
/* TODO
|
||
Handle multiline code after tag
|
||
%foo= some |
|
||
multiline |
|
||
code |
|
||
*/
|
||
|
||
(function(Prism) {
|
||
|
||
Prism.languages.haml = {
|
||
// Multiline stuff should appear before the rest
|
||
|
||
'multiline-comment': {
|
||
pattern: /((?:^|\r?\n|\r)([\t ]*))(?:\/|-#).*((?:\r?\n|\r)\2[\t ]+.+)*/,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
},
|
||
|
||
'multiline-code': [
|
||
{
|
||
pattern: /((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*,[\t ]*((?:\r?\n|\r)\2[\t ]+.*,[\t ]*)*((?:\r?\n|\r)\2[\t ]+.+)/,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.ruby
|
||
}
|
||
},
|
||
{
|
||
pattern: /((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*\|[\t ]*((?:\r?\n|\r)\2[\t ]+.*\|[\t ]*)*/,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.ruby
|
||
}
|
||
}
|
||
],
|
||
|
||
// See at the end of the file for known filters
|
||
'filter': {
|
||
pattern: /((?:^|\r?\n|\r)([\t ]*)):[\w-]+((?:\r?\n|\r)(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'filter-name': {
|
||
pattern: /^:[\w-]+/,
|
||
alias: 'variable'
|
||
}
|
||
}
|
||
},
|
||
|
||
'markup': {
|
||
pattern: /((?:^|\r?\n|\r)[\t ]*)<.+/,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.markup
|
||
}
|
||
},
|
||
'doctype': {
|
||
pattern: /((?:^|\r?\n|\r)[\t ]*)!!!(?: .+)?/,
|
||
lookbehind: true
|
||
},
|
||
'tag': {
|
||
// Allows for one nested group of braces
|
||
pattern: /((?:^|\r?\n|\r)[\t ]*)[%.#][\w\-#.]*[\w\-](?:\([^)]+\)|\{(?:\{[^}]+\}|[^}])+\}|\[[^\]]+\])*[\/<>]*/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'attributes': [
|
||
{
|
||
// Lookbehind tries to prevent interpolations for breaking it all
|
||
// Allows for one nested group of braces
|
||
pattern: /(^|[^#])\{(?:\{[^}]+\}|[^}])+\}/,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.ruby
|
||
}
|
||
},
|
||
{
|
||
pattern: /\([^)]+\)/,
|
||
inside: {
|
||
'attr-value': {
|
||
pattern: /(=\s*)(?:"(?:\\?.)*?"|[^)\s]+)/,
|
||
lookbehind: true
|
||
},
|
||
'attr-name': /[\w:-]+(?=\s*!?=|\s*[,)])/,
|
||
'punctuation': /[=(),]/
|
||
}
|
||
},
|
||
{
|
||
pattern: /\[[^\]]+\]/,
|
||
inside: {
|
||
rest: Prism.languages.ruby
|
||
}
|
||
}
|
||
],
|
||
'punctuation': /[<>]/
|
||
}
|
||
},
|
||
'code': {
|
||
pattern: /((?:^|\r?\n|\r)[\t ]*(?:[~-]|[&!]?=)).+/,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.ruby
|
||
}
|
||
},
|
||
// Interpolations in plain text
|
||
'interpolation': {
|
||
pattern: /#\{[^}]+\}/,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^#\{|\}$/,
|
||
alias: 'punctuation'
|
||
},
|
||
rest: Prism.languages.ruby
|
||
}
|
||
},
|
||
'punctuation': {
|
||
pattern: /((?:^|\r?\n|\r)[\t ]*)[~=\-&!]+/,
|
||
lookbehind: true
|
||
}
|
||
};
|
||
|
||
var filter_pattern = '((?:^|\\r?\\n|\\r)([\\t ]*)):{{filter_name}}((?:\\r?\\n|\\r)(?:\\2[\\t ]+.+|\\s*?(?=\\r?\\n|\\r)))+';
|
||
|
||
// Non exhaustive list of available filters and associated languages
|
||
var filters = [
|
||
'css',
|
||
{filter:'coffee',language:'coffeescript'},
|
||
'erb',
|
||
'javascript',
|
||
'less',
|
||
'markdown',
|
||
'ruby',
|
||
'scss',
|
||
'textile'
|
||
];
|
||
var all_filters = {};
|
||
for (var i = 0, l = filters.length; i < l; i++) {
|
||
var filter = filters[i];
|
||
filter = typeof filter === 'string' ? {filter: filter, language: filter} : filter;
|
||
if (Prism.languages[filter.language]) {
|
||
all_filters['filter-' + filter.filter] = {
|
||
pattern: RegExp(filter_pattern.replace('{{filter_name}}', filter.filter)),
|
||
lookbehind: true,
|
||
inside: {
|
||
'filter-name': {
|
||
pattern: /^:[\w-]+/,
|
||
alias: 'variable'
|
||
},
|
||
rest: Prism.languages[filter.language]
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
Prism.languages.insertBefore('haml', 'filter', all_filters);
|
||
|
||
}(Prism));
|
||
(function(Prism) {
|
||
|
||
var handlebars_pattern = /\{\{\{[\s\S]+?\}\}\}|\{\{[\s\S]+?\}\}/g;
|
||
|
||
Prism.languages.handlebars = Prism.languages.extend('markup', {
|
||
'handlebars': {
|
||
pattern: handlebars_pattern,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^\{\{\{?|\}\}\}?$/i,
|
||
alias: 'punctuation'
|
||
},
|
||
'string': /(["'])(\\?.)*?\1/,
|
||
'number': /\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee][+-]?\d+)?)\b/,
|
||
'boolean': /\b(true|false)\b/,
|
||
'block': {
|
||
pattern: /^(\s*~?\s*)[#\/]\S+?(?=\s*~?\s*$|\s)/i,
|
||
lookbehind: true,
|
||
alias: 'keyword'
|
||
},
|
||
'brackets': {
|
||
pattern: /\[[^\]]+\]/,
|
||
inside: {
|
||
punctuation: /\[|\]/,
|
||
variable: /[\s\S]+/
|
||
}
|
||
},
|
||
'punctuation': /[!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]/,
|
||
'variable': /[^!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~\s]+/
|
||
}
|
||
}
|
||
});
|
||
|
||
// Comments are inserted at top so that they can
|
||
// surround markup
|
||
Prism.languages.insertBefore('handlebars', 'tag', {
|
||
'handlebars-comment': {
|
||
pattern: /\{\{![\s\S]*?\}\}/,
|
||
alias: ['handlebars','comment']
|
||
}
|
||
});
|
||
|
||
// Tokenize all inline Handlebars expressions that are wrapped in {{ }} or {{{ }}}
|
||
// This allows for easy Handlebars + markup highlighting
|
||
Prism.hooks.add('before-highlight', function(env) {
|
||
if (env.language !== 'handlebars') {
|
||
return;
|
||
}
|
||
|
||
env.tokenStack = [];
|
||
|
||
env.backupCode = env.code;
|
||
env.code = env.code.replace(handlebars_pattern, function(match) {
|
||
var i = env.tokenStack.length;
|
||
// Check for existing strings
|
||
while (env.backupCode.indexOf('___HANDLEBARS' + i + '___') !== -1)
|
||
++i;
|
||
|
||
// Create a sparse array
|
||
env.tokenStack[i] = match;
|
||
|
||
return '___HANDLEBARS' + i + '___';
|
||
});
|
||
});
|
||
|
||
// Restore env.code for other plugins (e.g. line-numbers)
|
||
Prism.hooks.add('before-insert', function(env) {
|
||
if (env.language === 'handlebars') {
|
||
env.code = env.backupCode;
|
||
delete env.backupCode;
|
||
}
|
||
});
|
||
|
||
// Re-insert the tokens after highlighting
|
||
// and highlight them with defined grammar
|
||
Prism.hooks.add('after-highlight', function(env) {
|
||
if (env.language !== 'handlebars') {
|
||
return;
|
||
}
|
||
|
||
for (var i = 0, keys = Object.keys(env.tokenStack); i < keys.length; ++i) {
|
||
var k = keys[i];
|
||
var t = env.tokenStack[k];
|
||
|
||
// The replace prevents $$, $&, $`, $', $n, $nn from being interpreted as special patterns
|
||
env.highlightedCode = env.highlightedCode.replace('___HANDLEBARS' + k + '___', Prism.highlight(t, env.grammar, 'handlebars').replace(/\$/g, '$$$$'));
|
||
}
|
||
|
||
env.element.innerHTML = env.highlightedCode;
|
||
});
|
||
|
||
}(Prism));
|
||
|
||
Prism.languages.haskell= {
|
||
'comment': {
|
||
pattern: /(^|[^-!#$%*+=?&@|~.:<>^\\\/])(--[^-!#$%*+=?&@|~.:<>^\\\/].*|{-[\s\S]*?-})/m,
|
||
lookbehind: true
|
||
},
|
||
'char': /'([^\\']|\\([abfnrtv\\"'&]|\^[A-Z@[\]\^_]|NUL|SOH|STX|ETX|EOT|ENQ|ACK|BEL|BS|HT|LF|VT|FF|CR|SO|SI|DLE|DC1|DC2|DC3|DC4|NAK|SYN|ETB|CAN|EM|SUB|ESC|FS|GS|RS|US|SP|DEL|\d+|o[0-7]+|x[0-9a-fA-F]+))'/,
|
||
'string': {
|
||
pattern: /"([^\\"]|\\([abfnrtv\\"'&]|\^[A-Z@[\]\^_]|NUL|SOH|STX|ETX|EOT|ENQ|ACK|BEL|BS|HT|LF|VT|FF|CR|SO|SI|DLE|DC1|DC2|DC3|DC4|NAK|SYN|ETB|CAN|EM|SUB|ESC|FS|GS|RS|US|SP|DEL|\d+|o[0-7]+|x[0-9a-fA-F]+)|\\\s+\\)*"/,
|
||
greedy: true
|
||
},
|
||
'keyword' : /\b(case|class|data|deriving|do|else|if|in|infixl|infixr|instance|let|module|newtype|of|primitive|then|type|where)\b/,
|
||
'import_statement' : {
|
||
// The imported or hidden names are not included in this import
|
||
// statement. This is because we want to highlight those exactly like
|
||
// we do for the names in the program.
|
||
pattern: /(\r?\n|\r|^)\s*import\s+(qualified\s+)?([A-Z][_a-zA-Z0-9']*)(\.[A-Z][_a-zA-Z0-9']*)*(\s+as\s+([A-Z][_a-zA-Z0-9']*)(\.[A-Z][_a-zA-Z0-9']*)*)?(\s+hiding\b)?/m,
|
||
inside: {
|
||
'keyword': /\b(import|qualified|as|hiding)\b/
|
||
}
|
||
},
|
||
// These are builtin variables only. Constructors are highlighted later as a constant.
|
||
'builtin': /\b(abs|acos|acosh|all|and|any|appendFile|approxRational|asTypeOf|asin|asinh|atan|atan2|atanh|basicIORun|break|catch|ceiling|chr|compare|concat|concatMap|const|cos|cosh|curry|cycle|decodeFloat|denominator|digitToInt|div|divMod|drop|dropWhile|either|elem|encodeFloat|enumFrom|enumFromThen|enumFromThenTo|enumFromTo|error|even|exp|exponent|fail|filter|flip|floatDigits|floatRadix|floatRange|floor|fmap|foldl|foldl1|foldr|foldr1|fromDouble|fromEnum|fromInt|fromInteger|fromIntegral|fromRational|fst|gcd|getChar|getContents|getLine|group|head|id|inRange|index|init|intToDigit|interact|ioError|isAlpha|isAlphaNum|isAscii|isControl|isDenormalized|isDigit|isHexDigit|isIEEE|isInfinite|isLower|isNaN|isNegativeZero|isOctDigit|isPrint|isSpace|isUpper|iterate|last|lcm|length|lex|lexDigits|lexLitChar|lines|log|logBase|lookup|map|mapM|mapM_|max|maxBound|maximum|maybe|min|minBound|minimum|mod|negate|not|notElem|null|numerator|odd|or|ord|otherwise|pack|pi|pred|primExitWith|print|product|properFraction|putChar|putStr|putStrLn|quot|quotRem|range|rangeSize|read|readDec|readFile|readFloat|readHex|readIO|readInt|readList|readLitChar|readLn|readOct|readParen|readSigned|reads|readsPrec|realToFrac|recip|rem|repeat|replicate|return|reverse|round|scaleFloat|scanl|scanl1|scanr|scanr1|seq|sequence|sequence_|show|showChar|showInt|showList|showLitChar|showParen|showSigned|showString|shows|showsPrec|significand|signum|sin|sinh|snd|sort|span|splitAt|sqrt|subtract|succ|sum|tail|take|takeWhile|tan|tanh|threadToIOResult|toEnum|toInt|toInteger|toLower|toRational|toUpper|truncate|uncurry|undefined|unlines|until|unwords|unzip|unzip3|userError|words|writeFile|zip|zip3|zipWith|zipWith3)\b/,
|
||
// decimal integers and floating point numbers | octal integers | hexadecimal integers
|
||
'number' : /\b(\d+(\.\d+)?(e[+-]?\d+)?|0o[0-7]+|0x[0-9a-f]+)\b/i,
|
||
// Most of this is needed because of the meaning of a single '.'.
|
||
// If it stands alone freely, it is the function composition.
|
||
// It may also be a separator between a module name and an identifier => no
|
||
// operator. If it comes together with other special characters it is an
|
||
// operator too.
|
||
'operator' : /\s\.\s|[-!#$%*+=?&@|~.:<>^\\\/]*\.[-!#$%*+=?&@|~.:<>^\\\/]+|[-!#$%*+=?&@|~.:<>^\\\/]+\.[-!#$%*+=?&@|~.:<>^\\\/]*|[-!#$%*+=?&@|~:<>^\\\/]+|`([A-Z][_a-zA-Z0-9']*\.)*[_a-z][_a-zA-Z0-9']*`/,
|
||
// In Haskell, nearly everything is a variable, do not highlight these.
|
||
'hvariable': /\b([A-Z][_a-zA-Z0-9']*\.)*[_a-z][_a-zA-Z0-9']*\b/,
|
||
'constant': /\b([A-Z][_a-zA-Z0-9']*\.)*[A-Z][_a-zA-Z0-9']*\b/,
|
||
'punctuation' : /[{}[\];(),.:]/
|
||
};
|
||
|
||
Prism.languages.haxe = Prism.languages.extend('clike', {
|
||
// Strings can be multi-line
|
||
'string': {
|
||
pattern: /(["'])(?:(?!\1)[^\\]|\\[\s\S])*\1/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': {
|
||
pattern: /(^|[^\\])\$(?:\w+|\{[^}]+\})/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'interpolation': {
|
||
pattern: /^\$\w*/,
|
||
alias: 'variable'
|
||
}
|
||
// See rest below
|
||
}
|
||
}
|
||
}
|
||
},
|
||
// The final look-ahead prevents highlighting of keywords if expressions such as "haxe.macro.Expr"
|
||
'keyword': /\bthis\b|\b(?:abstract|as|break|case|cast|catch|class|continue|default|do|dynamic|else|enum|extends|extern|from|for|function|if|implements|import|in|inline|interface|macro|new|null|override|public|private|return|static|super|switch|throw|to|try|typedef|using|var|while)(?!\.)\b/,
|
||
'operator': /\.{3}|\+\+?|-[->]?|[=!]=?|&&?|\|\|?|<[<=]?|>[>=]?|[*\/%~^]/
|
||
});
|
||
Prism.languages.insertBefore('haxe', 'class-name', {
|
||
'regex': {
|
||
pattern: /~\/(?:[^\/\\\r\n]|\\.)+\/[igmsu]*/,
|
||
greedy: true
|
||
}
|
||
});
|
||
Prism.languages.insertBefore('haxe', 'keyword', {
|
||
'preprocessor': {
|
||
pattern: /#\w+/,
|
||
alias: 'builtin'
|
||
},
|
||
'metadata': {
|
||
pattern: /@:?\w+/,
|
||
alias: 'symbol'
|
||
},
|
||
'reification': {
|
||
pattern: /\$(?:\w+|(?=\{))/,
|
||
alias: 'variable'
|
||
}
|
||
});
|
||
Prism.languages.haxe['string'].inside['interpolation'].inside.rest = Prism.util.clone(Prism.languages.haxe);
|
||
delete Prism.languages.haxe['class-name'];
|
||
Prism.languages.http = {
|
||
'request-line': {
|
||
pattern: /^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b\shttps?:\/\/\S+\sHTTP\/[0-9.]+/m,
|
||
inside: {
|
||
// HTTP Verb
|
||
property: /^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b/,
|
||
// Path or query argument
|
||
'attr-name': /:\w+/
|
||
}
|
||
},
|
||
'response-status': {
|
||
pattern: /^HTTP\/1.[01] \d+.*/m,
|
||
inside: {
|
||
// Status, e.g. 200 OK
|
||
property: {
|
||
pattern: /(^HTTP\/1.[01] )\d+.*/i,
|
||
lookbehind: true
|
||
}
|
||
}
|
||
},
|
||
// HTTP header name
|
||
'header-name': {
|
||
pattern: /^[\w-]+:(?=.)/m,
|
||
alias: 'keyword'
|
||
}
|
||
};
|
||
|
||
// Create a mapping of Content-Type headers to language definitions
|
||
var httpLanguages = {
|
||
'application/json': Prism.languages.javascript,
|
||
'application/xml': Prism.languages.markup,
|
||
'text/xml': Prism.languages.markup,
|
||
'text/html': Prism.languages.markup
|
||
};
|
||
|
||
// Insert each content type parser that has its associated language
|
||
// currently loaded.
|
||
for (var contentType in httpLanguages) {
|
||
if (httpLanguages[contentType]) {
|
||
var options = {};
|
||
options[contentType] = {
|
||
pattern: new RegExp('(content-type:\\s*' + contentType + '[\\w\\W]*?)(?:\\r?\\n|\\r){2}[\\w\\W]*', 'i'),
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: httpLanguages[contentType]
|
||
}
|
||
};
|
||
Prism.languages.insertBefore('http', 'header-name', options);
|
||
}
|
||
}
|
||
;
|
||
Prism.languages.icon = {
|
||
'comment': /#.*/,
|
||
'string': {
|
||
pattern: /(["'])(?:(?!\1)[^\\\r\n]|\\.|_(?:\r?\n|\r))*\1/,
|
||
greedy: true
|
||
},
|
||
'number': /\b(?:\d+r[a-z\d]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)\b|\.\d+\b/i,
|
||
'builtin-keyword': {
|
||
pattern: /&(?:allocated|ascii|clock|collections|cset|current|date|dateline|digits|dump|e|error(?:number|text|value)?|errout|fail|features|file|host|input|lcase|letters|level|line|main|null|output|phi|pi|pos|progname|random|regions|source|storage|subject|time|trace|ucase|version)\b/,
|
||
alias: 'variable'
|
||
},
|
||
'directive': {
|
||
pattern: /\$\w+/,
|
||
alias: 'builtin'
|
||
},
|
||
'keyword': /\b(?:break|by|case|create|default|do|else|end|every|fail|global|if|initial|invocable|link|local|next|not|of|procedure|record|repeat|return|static|suspend|then|to|until|while)\b/,
|
||
'function': /(?!\d)\w+(?=\s*[({]|\s*!\s*\[)/,
|
||
'operator': /[+-]:(?!=)|(?:[\/?@^%&]|\+\+?|--?|==?=?|~==?=?|\*\*?|\|\|\|?|<(?:->?|<?=?)|>>?=?)(?::=)?|:(?:=:?)?|[!.\\|~]/,
|
||
'punctuation': /[\[\](){},;]/
|
||
};
|
||
Prism.languages.inform7 = {
|
||
'string': {
|
||
pattern: /"[^"]*"/,
|
||
inside: {
|
||
'substitution': {
|
||
pattern: /\[[^\]]+\]/,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern:/\[|\]/,
|
||
alias: 'punctuation'
|
||
}
|
||
// See rest below
|
||
}
|
||
}
|
||
}
|
||
},
|
||
'comment': {
|
||
pattern: /\[[^\]]+\]/,
|
||
greedy: true
|
||
},
|
||
'title': {
|
||
pattern: /^[ \t]*(?:volume|book|part(?! of)|chapter|section|table)\b.+/im,
|
||
alias: 'important'
|
||
},
|
||
'number': {
|
||
pattern: /(^|[^-])(?:(?:\b|-)\d+(?:\.\d+)?(?:\^\d+)?\w*|\b(?:one|two|three|four|five|six|seven|eight|nine|ten|eleven|twelve))\b(?!-)/i,
|
||
lookbehind: true
|
||
},
|
||
'verb': {
|
||
pattern: /(^|[^-])\b(?:applying to|are|attacking|answering|asking|be(?:ing)?|burning|buying|called|carries|carry(?! out)|carrying|climbing|closing|conceal(?:s|ing)?|consulting|contain(?:s|ing)?|cutting|drinking|dropping|eating|enclos(?:es?|ing)|entering|examining|exiting|getting|giving|going|ha(?:ve|s|ving)|hold(?:s|ing)?|impl(?:y|ies)|incorporat(?:es?|ing)|inserting|is|jumping|kissing|listening|locking|looking|mean(?:s|ing)?|opening|provid(?:es?|ing)|pulling|pushing|putting|relat(?:es?|ing)|removing|searching|see(?:s|ing)?|setting|showing|singing|sleeping|smelling|squeezing|switching|support(?:s|ing)?|swearing|taking|tasting|telling|thinking|throwing|touching|turning|tying|unlock(?:s|ing)?|var(?:y|ies|ying)|waiting|waking|waving|wear(?:s|ing)?)\b(?!-)/i,
|
||
lookbehind: true,
|
||
alias: 'operator'
|
||
},
|
||
'keyword': {
|
||
pattern: /(^|[^-])\b(?:after|before|carry out|check|continue the action|definition(?= *:)|do nothing|else|end (?:if|unless|the story)|every turn|if|include|instead(?: of)?|let|move|no|now|otherwise|repeat|report|resume the story|rule for|running through|say(?:ing)?|stop the action|test|try(?:ing)?|understand|unless|use|when|while|yes)\b(?!-)/i,
|
||
lookbehind: true
|
||
},
|
||
'property': {
|
||
pattern: /(^|[^-])\b(?:adjacent(?! to)|carried|closed|concealed|contained|dark|described|edible|empty|enclosed|enterable|even|female|fixed in place|full|handled|held|improper-named|incorporated|inedible|invisible|lighted|lit|lock(?:able|ed)|male|marked for listing|mentioned|negative|neuter|non-(?:empty|full|recurring)|odd|opaque|open(?:able)?|plural-named|portable|positive|privately-named|proper-named|provided|publically-named|pushable between rooms|recurring|related|rubbing|scenery|seen|singular-named|supported|swinging|switch(?:able|ed(?: on| off)?)|touch(?:able|ed)|transparent|unconcealed|undescribed|unlit|unlocked|unmarked for listing|unmentioned|unopenable|untouchable|unvisited|variable|visible|visited|wearable|worn)\b(?!-)/i,
|
||
lookbehind: true,
|
||
alias: 'symbol'
|
||
},
|
||
'position': {
|
||
pattern: /(^|[^-])\b(?:above|adjacent to|back side of|below|between|down|east|everywhere|front side|here|in|inside(?: from)?|north(?:east|west)?|nowhere|on(?: top of)?|other side|outside(?: from)?|parts? of|regionally in|south(?:east|west)?|through|up|west|within)\b(?!-)/i,
|
||
lookbehind: true,
|
||
alias: 'keyword'
|
||
},
|
||
'type': {
|
||
pattern: /(^|[^-])\b(?:actions?|activit(?:y|ies)|actors?|animals?|backdrops?|containers?|devices?|directions?|doors?|holders?|kinds?|lists?|m[ae]n|nobody|nothing|nouns?|numbers?|objects?|people|persons?|player(?:'s holdall)?|regions?|relations?|rooms?|rule(?:book)?s?|scenes?|someone|something|supporters?|tables?|texts?|things?|time|vehicles?|wom[ae]n)\b(?!-)/i,
|
||
lookbehind: true,
|
||
alias: 'variable'
|
||
},
|
||
'punctuation': /[.,:;(){}]/
|
||
};
|
||
|
||
Prism.languages.inform7['string'].inside['substitution'].inside.rest = Prism.util.clone(Prism.languages.inform7);
|
||
// We don't want the remaining text in the substitution to be highlighted as the string.
|
||
Prism.languages.inform7['string'].inside['substitution'].inside.rest.text = {
|
||
pattern: /\S(?:\s*\S)*/,
|
||
alias: 'comment'
|
||
};
|
||
Prism.languages.ini= {
|
||
'comment': /^[ \t]*;.*$/m,
|
||
'selector': /^[ \t]*\[.*?\]/m,
|
||
'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m,
|
||
'attr-value': {
|
||
pattern: /=.*/,
|
||
inside: {
|
||
'punctuation': /^[=]/
|
||
}
|
||
}
|
||
};
|
||
Prism.languages.j = {
|
||
'comment': /\bNB\..*/,
|
||
'string': {
|
||
pattern: /'(?:''|[^'\r\n])*'/,
|
||
greedy: true
|
||
},
|
||
'keyword': /\b(?:(?:adverb|conjunction|CR|def|define|dyad|LF|monad|noun|verb)\b|(?:assert|break|case|catch[dt]?|continue|do|else|elseif|end|fcase|for|for_\w+|goto_\w+|if|label_\w+|return|select|throw|try|while|whilst)\.)/,
|
||
'verb': {
|
||
// Negative look-ahead prevents bad highlighting
|
||
// of ^: ;. =. =: !. !:
|
||
pattern: /(?!\^:|;\.|[=!][.:])(?:\{(?:\.|::?)?|p(?:\.\.?|:)|[=!\]]|[<>+*\-%$|,#][.:]?|[\^?]\.?|[;\[]:?|[~}"i][.:]|[ACeEIjLor]\.|(?:[_\/\\qsux]|_?\d):)/,
|
||
alias: 'keyword'
|
||
},
|
||
'number': /\b_?(?:(?!\d:)\d+(?:\.\d+)?(?:(?:[ejpx]|ad|ar)_?\d+(?:\.\d+)?)*(?:b_?[\da-z]+(?:\.[\da-z]+)?)?|_(?!\.))/,
|
||
'adverb': {
|
||
pattern: /[~}]|[\/\\]\.?|[bfM]\.|t[.:]/,
|
||
alias: 'builtin'
|
||
},
|
||
'operator': /[=a][.:]|_\./,
|
||
'conjunction': {
|
||
pattern: /&(?:\.:?|:)?|[.:@][.:]?|[!D][.:]|[;dHT]\.|`:?|[\^LS]:|"/,
|
||
alias: 'variable'
|
||
},
|
||
'punctuation': /[()]/
|
||
};
|
||
(function(Prism) {
|
||
// TODO:
|
||
// - Add CSS highlighting inside <style> tags
|
||
// - Add support for multi-line code blocks
|
||
// - Add support for interpolation #{} and !{}
|
||
// - Add support for tag interpolation #[]
|
||
// - Add explicit support for plain text using |
|
||
// - Add support for markup embedded in plain text
|
||
|
||
Prism.languages.jade = {
|
||
|
||
// Multiline stuff should appear before the rest
|
||
|
||
// This handles both single-line and multi-line comments
|
||
'comment': {
|
||
pattern: /(^([\t ]*))\/\/.*((?:\r?\n|\r)\2[\t ]+.+)*/m,
|
||
lookbehind: true
|
||
},
|
||
|
||
// All the tag-related part is in lookbehind
|
||
// so that it can be highlighted by the "tag" pattern
|
||
'multiline-script': {
|
||
pattern: /(^([\t ]*)script\b.*\.[\t ]*)((?:\r?\n|\r(?!\n))(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.javascript
|
||
}
|
||
},
|
||
|
||
// See at the end of the file for known filters
|
||
'filter': {
|
||
pattern: /(^([\t ]*)):.+((?:\r?\n|\r(?!\n))(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'filter-name': {
|
||
pattern: /^:[\w-]+/,
|
||
alias: 'variable'
|
||
}
|
||
}
|
||
},
|
||
|
||
'multiline-plain-text': {
|
||
pattern: /(^([\t ]*)[\w\-#.]+\.[\t ]*)((?:\r?\n|\r(?!\n))(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/m,
|
||
lookbehind: true
|
||
},
|
||
'markup': {
|
||
pattern: /(^[\t ]*)<.+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.markup
|
||
}
|
||
},
|
||
'doctype': {
|
||
pattern: /((?:^|\n)[\t ]*)doctype(?: .+)?/,
|
||
lookbehind: true
|
||
},
|
||
|
||
// This handle all conditional and loop keywords
|
||
'flow-control': {
|
||
pattern: /(^[\t ]*)(?:if|unless|else|case|when|default|each|while)\b(?: .+)?/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'each': {
|
||
pattern: /^each .+? in\b/,
|
||
inside: {
|
||
'keyword': /\b(?:each|in)\b/,
|
||
'punctuation': /,/
|
||
}
|
||
},
|
||
'branch': {
|
||
pattern: /^(?:if|unless|else|case|when|default|while)\b/,
|
||
alias: 'keyword'
|
||
},
|
||
rest: Prism.languages.javascript
|
||
}
|
||
},
|
||
'keyword': {
|
||
pattern: /(^[\t ]*)(?:block|extends|include|append|prepend)\b.+/m,
|
||
lookbehind: true
|
||
},
|
||
'mixin': [
|
||
// Declaration
|
||
{
|
||
pattern: /(^[\t ]*)mixin .+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': /^mixin/,
|
||
'function': /\w+(?=\s*\(|\s*$)/,
|
||
'punctuation': /[(),.]/
|
||
}
|
||
},
|
||
// Usage
|
||
{
|
||
pattern: /(^[\t ]*)\+.+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'name': {
|
||
pattern: /^\+\w+/,
|
||
alias: 'function'
|
||
},
|
||
'rest': Prism.languages.javascript
|
||
}
|
||
}
|
||
],
|
||
'script': {
|
||
pattern: /(^[\t ]*script(?:(?:&[^(]+)?\([^)]+\))*[\t ]+).+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.javascript
|
||
}
|
||
},
|
||
|
||
'plain-text': {
|
||
pattern: /(^[\t ]*(?!-)[\w\-#.]*[\w\-](?:(?:&[^(]+)?\([^)]+\))*\/?[\t ]+).+/m,
|
||
lookbehind: true
|
||
},
|
||
'tag': {
|
||
pattern: /(^[\t ]*)(?!-)[\w\-#.]*[\w\-](?:(?:&[^(]+)?\([^)]+\))*\/?:?/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'attributes': [
|
||
{
|
||
pattern: /&[^(]+\([^)]+\)/,
|
||
inside: {
|
||
rest: Prism.languages.javascript
|
||
}
|
||
},
|
||
{
|
||
pattern: /\([^)]+\)/,
|
||
inside: {
|
||
'attr-value': {
|
||
pattern: /(=\s*)(?:\{[^}]*\}|[^,)\r\n]+)/,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.javascript
|
||
}
|
||
},
|
||
'attr-name': /[\w-]+(?=\s*!?=|\s*[,)])/,
|
||
'punctuation': /[!=(),]+/
|
||
}
|
||
}
|
||
],
|
||
'punctuation': /:/
|
||
}
|
||
},
|
||
'code': [
|
||
{
|
||
pattern: /(^[\t ]*(?:-|!?=)).+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
rest: Prism.languages.javascript
|
||
}
|
||
}
|
||
],
|
||
'punctuation': /[.\-!=|]+/
|
||
};
|
||
|
||
var filter_pattern = '(^([\\t ]*)):{{filter_name}}((?:\\r?\\n|\\r(?!\\n))(?:\\2[\\t ]+.+|\\s*?(?=\\r?\\n|\\r)))+';
|
||
|
||
// Non exhaustive list of available filters and associated languages
|
||
var filters = [
|
||
{filter:'atpl',language:'twig'},
|
||
{filter:'coffee',language:'coffeescript'},
|
||
'ejs',
|
||
'handlebars',
|
||
'hogan',
|
||
'less',
|
||
'livescript',
|
||
'markdown',
|
||
'mustache',
|
||
'plates',
|
||
{filter:'sass',language:'scss'},
|
||
'stylus',
|
||
'swig'
|
||
|
||
];
|
||
var all_filters = {};
|
||
for (var i = 0, l = filters.length; i < l; i++) {
|
||
var filter = filters[i];
|
||
filter = typeof filter === 'string' ? {filter: filter, language: filter} : filter;
|
||
if (Prism.languages[filter.language]) {
|
||
all_filters['filter-' + filter.filter] = {
|
||
pattern: RegExp(filter_pattern.replace('{{filter_name}}', filter.filter), 'm'),
|
||
lookbehind: true,
|
||
inside: {
|
||
'filter-name': {
|
||
pattern: /^:[\w-]+/,
|
||
alias: 'variable'
|
||
},
|
||
rest: Prism.languages[filter.language]
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
Prism.languages.insertBefore('jade', 'filter', all_filters);
|
||
|
||
}(Prism));
|
||
Prism.languages.java = Prism.languages.extend('clike', {
|
||
'keyword': /\b(abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do|if|private|this|break|double|implements|protected|throw|byte|else|import|public|throws|case|enum|instanceof|return|transient|catch|extends|int|short|try|char|final|interface|static|void|class|finally|long|strictfp|volatile|const|float|native|super|while)\b/,
|
||
'number': /\b0b[01]+\b|\b0x[\da-f]*\.?[\da-fp\-]+\b|\b\d*\.?\d+(?:e[+-]?\d+)?[df]?\b/i,
|
||
'operator': {
|
||
pattern: /(^|[^.])(?:\+[+=]?|-[-=]?|!=?|<<?=?|>>?>?=?|==?|&[&=]?|\|[|=]?|\*=?|\/=?|%=?|\^=?|[?:~])/m,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('java','function', {
|
||
'annotation': {
|
||
alias: 'punctuation',
|
||
pattern: /(^|[^.])@\w+/,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
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|extender|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/g,
|
||
'builtin': /\b(?:undefined|string|int|void|long|Byte|bool|double|float|char|any)\b/,
|
||
'number': /\b\d*\.?\d+(?:e[+-]?\d+)?l?\b/i,
|
||
'operator': /->|<<|[!+-<>=*]?=|[:<>!?*\/%^]|&&|\|\||--?|\+\+?/g,
|
||
'symbol': /[|;@]/,
|
||
'punctuation': /[,.]/,
|
||
'string': {
|
||
pattern: /(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||
greedy: true
|
||
},
|
||
});
|
||
|
||
delete Prism.languages.jolie['class-name'];
|
||
delete Prism.languages.jolie['function'];
|
||
|
||
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+/g
|
||
},
|
||
'symbol': {
|
||
pattern: /=>/g
|
||
}
|
||
}
|
||
}
|
||
});
|
||
Prism.languages.json = {
|
||
'property': /"(?:\\.|[^\\"])*"(?=\s*:)/ig,
|
||
'string': /"(?!:)(?:\\.|[^\\"])*"(?!:)/g,
|
||
'number': /\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee][+-]?\d+)?)\b/g,
|
||
'punctuation': /[{}[\]);,]/g,
|
||
'operator': /:/g,
|
||
'boolean': /\b(true|false)\b/gi,
|
||
'null': /\bnull\b/gi
|
||
};
|
||
|
||
Prism.languages.jsonp = Prism.languages.json;
|
||
|
||
Prism.languages.julia= {
|
||
'comment': {
|
||
pattern: /(^|[^\\])#.*/,
|
||
lookbehind: true
|
||
},
|
||
'string': /"""[\s\S]+?"""|'''[\s\S]+?'''|("|')(\\?.)*?\1/,
|
||
'keyword' : /\b(abstract|baremodule|begin|bitstype|break|catch|ccall|const|continue|do|else|elseif|end|export|finally|for|function|global|if|immutable|import|importall|let|local|macro|module|print|println|quote|return|try|type|typealias|using|while)\b/,
|
||
'boolean' : /\b(true|false)\b/,
|
||
'number' : /\b-?(0[box])?(?:[\da-f]+\.?\d*|\.\d+)(?:[efp][+-]?\d+)?j?\b/i,
|
||
'operator': /\+=?|-=?|\*=?|\/[\/=]?|\\=?|\^=?|%=?|÷=?|!=?=?|&=?|\|[=>]?|\$=?|<(?:<=?|[=:])?|>(?:=|>>?=?)?|==?=?|[~≠≤≥]/,
|
||
'punctuation' : /[{}[\];(),.:]/
|
||
};
|
||
Prism.languages.keyman = {
|
||
'comment': /\bc\s.*/i,
|
||
'function': /\[\s*((CTRL|SHIFT|ALT|LCTRL|RCTRL|LALT|RALT|CAPS|NCAPS)\s+)*([TKU]_[a-z0-9_?]+|".+?"|'.+?')\s*\]/i, // virtual key
|
||
'string': /("|')((?!\1).)*\1/,
|
||
'bold': [ // header statements, system stores and variable system stores
|
||
/&(baselayout|bitmap|capsononly|capsalwaysoff|shiftfreescaps|copyright|ethnologuecode|hotkey|includecodes|keyboardversion|kmw_embedcss|kmw_embedjs|kmw_helpfile|kmw_helptext|kmw_rtl|language|layer|layoutfile|message|mnemoniclayout|name|oldcharposmatching|platform|targets|version|visualkeyboard|windowslanguages)\b/i,
|
||
/\b(bitmap|bitmaps|caps on only|caps always off|shift frees caps|copyright|hotkey|language|layout|message|name|version)\b/i
|
||
],
|
||
'keyword': /\b(any|baselayout|beep|call|context|deadkey|dk|if|index|layer|notany|nul|outs|platform|return|reset|save|set|store|use)\b/i, // rule keywords
|
||
'atrule': /\b(ansi|begin|unicode|group|using keys|match|nomatch)\b/i, // structural keywords
|
||
'number': /\b(U\+[\dA-F]+|d\d+|x[\da-f]+|\d+)\b/i, // U+####, x###, d### characters and numbers
|
||
'operator': /[+>\\,()]/,
|
||
'tag': /\$(keyman|kmfl|weaver|keymanweb|keymanonly):/i // prefixes
|
||
};
|
||
(function (Prism) {
|
||
Prism.languages.kotlin = Prism.languages.extend('clike', {
|
||
'keyword': {
|
||
// The lookbehind prevents wrong highlighting of e.g. kotlin.properties.get
|
||
pattern: /(^|[^.])\b(?:abstract|annotation|as|break|by|catch|class|companion|const|constructor|continue|crossinline|data|do|else|enum|final|finally|for|fun|get|if|import|in|init|inline|inner|interface|internal|is|lateinit|noinline|null|object|open|out|override|package|private|protected|public|reified|return|sealed|set|super|tailrec|this|throw|to|try|val|var|when|where|while)\b/,
|
||
lookbehind: true
|
||
},
|
||
'function': [
|
||
/\w+(?=\s*\()/,
|
||
{
|
||
pattern: /(\.)\w+(?=\s*\{)/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'number': /\b(?:0[bx][\da-fA-F]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?[fFL]?)\b/,
|
||
'operator': /\+[+=]?|-[-=>]?|==?=?|!(?:!|==?)?|[\/*%<>]=?|[?:]:?|\.\.|&&|\|\||\b(?:and|inv|or|shl|shr|ushr|xor)\b/
|
||
});
|
||
|
||
delete Prism.languages.kotlin["class-name"];
|
||
|
||
Prism.languages.insertBefore('kotlin', 'string', {
|
||
'raw-string': {
|
||
pattern: /(["'])\1\1[\s\S]*?\1{3}/,
|
||
alias: 'string'
|
||
// See interpolation below
|
||
}
|
||
});
|
||
Prism.languages.insertBefore('kotlin', 'keyword', {
|
||
'annotation': {
|
||
pattern: /\B@(?:\w+:)?(?:[A-Z]\w*|\[[^\]]+\])/,
|
||
alias: 'builtin'
|
||
}
|
||
});
|
||
Prism.languages.insertBefore('kotlin', 'function', {
|
||
'label': {
|
||
pattern: /\w+@|@\w+/,
|
||
alias: 'symbol'
|
||
}
|
||
});
|
||
|
||
var interpolation = [
|
||
{
|
||
pattern: /\$\{[^}]+\}/,
|
||
inside: {
|
||
delimiter: {
|
||
pattern: /^\$\{|\}$/,
|
||
alias: 'variable'
|
||
},
|
||
rest: Prism.util.clone(Prism.languages.kotlin)
|
||
}
|
||
},
|
||
{
|
||
pattern: /\$\w+/,
|
||
alias: 'variable'
|
||
}
|
||
];
|
||
|
||
Prism.languages.kotlin['string'].inside = Prism.languages.kotlin['raw-string'].inside = {
|
||
interpolation: interpolation
|
||
};
|
||
|
||
}(Prism));
|
||
(function(Prism) {
|
||
var funcPattern = /\\([^a-z()[\]]|[a-z\*]+)/i,
|
||
insideEqu = {
|
||
'equation-command': {
|
||
pattern: funcPattern,
|
||
alias: 'regex'
|
||
}
|
||
};
|
||
|
||
Prism.languages.latex = {
|
||
'comment': /%.*/m,
|
||
// the verbatim environment prints whitespace to the document
|
||
'cdata': {
|
||
pattern: /(\\begin\{((?:verbatim|lstlisting)\*?)\})([\s\S]*?)(?=\\end\{\2\})/,
|
||
lookbehind: true
|
||
},
|
||
/*
|
||
* equations can be between $ $ or \( \) or \[ \]
|
||
* (all are multiline)
|
||
*/
|
||
'equation': [
|
||
{
|
||
pattern: /\$(?:\\?[\s\S])*?\$|\\\((?:\\?[\s\S])*?\\\)|\\\[(?:\\?[\s\S])*?\\\]/,
|
||
inside: insideEqu,
|
||
alias: 'string'
|
||
},
|
||
{
|
||
pattern: /(\\begin\{((?:equation|math|eqnarray|align|multline|gather)\*?)\})([\s\S]*?)(?=\\end\{\2\})/,
|
||
lookbehind: true,
|
||
inside: insideEqu,
|
||
alias: 'string'
|
||
}
|
||
],
|
||
/*
|
||
* arguments which are keywords or references are highlighted
|
||
* as keywords
|
||
*/
|
||
'keyword': {
|
||
pattern: /(\\(?:begin|end|ref|cite|label|usepackage|documentclass)(?:\[[^\]]+\])?\{)[^}]+(?=\})/,
|
||
lookbehind: true
|
||
},
|
||
'url': {
|
||
pattern: /(\\url\{)[^}]+(?=\})/,
|
||
lookbehind: true
|
||
},
|
||
/*
|
||
* section or chapter headlines are highlighted as bold so that
|
||
* they stand out more
|
||
*/
|
||
'headline': {
|
||
pattern: /(\\(?:part|chapter|section|subsection|frametitle|subsubsection|paragraph|subparagraph|subsubparagraph|subsubsubparagraph)\*?(?:\[[^\]]+\])?\{)[^}]+(?=\}(?:\[[^\]]+\])?)/,
|
||
lookbehind: true,
|
||
alias: 'class-name'
|
||
},
|
||
'function': {
|
||
pattern: funcPattern,
|
||
alias: 'selector'
|
||
},
|
||
'punctuation': /[[\]{}&]/
|
||
};
|
||
})(Prism);
|
||
|
||
/* FIXME :
|
||
:extend() is not handled specifically : its highlighting is buggy.
|
||
Mixin usage must be inside a ruleset to be highlighted.
|
||
At-rules (e.g. import) containing interpolations are buggy.
|
||
Detached rulesets are highlighted as at-rules.
|
||
A comment before a mixin usage prevents the latter to be properly highlighted.
|
||
*/
|
||
|
||
Prism.languages.less = Prism.languages.extend('css', {
|
||
'comment': [
|
||
/\/\*[\s\S]*?\*\//,
|
||
{
|
||
pattern: /(^|[^\\])\/\/.*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'atrule': {
|
||
pattern: /@[\w-]+?(?:\([^{}]+\)|[^(){};])*?(?=\s*\{)/i,
|
||
inside: {
|
||
'punctuation': /[:()]/
|
||
}
|
||
},
|
||
// selectors and mixins are considered the same
|
||
'selector': {
|
||
pattern: /(?:@\{[\w-]+\}|[^{};\s@])(?:@\{[\w-]+\}|\([^{}]*\)|[^{};@])*?(?=\s*\{)/,
|
||
inside: {
|
||
// mixin parameters
|
||
'variable': /@+[\w-]+/
|
||
}
|
||
},
|
||
|
||
'property': /(?:@\{[\w-]+\}|[\w-])+(?:\+_?)?(?=\s*:)/i,
|
||
'punctuation': /[{}();:,]/,
|
||
'operator': /[+\-*\/]/
|
||
});
|
||
|
||
// Invert function and punctuation positions
|
||
Prism.languages.insertBefore('less', 'punctuation', {
|
||
'function': Prism.languages.less.function
|
||
});
|
||
|
||
Prism.languages.insertBefore('less', 'property', {
|
||
'variable': [
|
||
// Variable declaration (the colon must be consumed!)
|
||
{
|
||
pattern: /@[\w-]+\s*:/,
|
||
inside: {
|
||
"punctuation": /:/
|
||
}
|
||
},
|
||
|
||
// Variable usage
|
||
/@@?[\w-]+/
|
||
],
|
||
'mixin-usage': {
|
||
pattern: /([{;]\s*)[.#](?!\d)[\w-]+.*?(?=[(;])/,
|
||
lookbehind: true,
|
||
alias: 'function'
|
||
}
|
||
});
|
||
|
||
Prism.languages.livescript = {
|
||
'interpolated-string': {
|
||
pattern: /("""|")(?:\\[\s\S]|(?!\1)[^\\])*\1/,
|
||
greedy: true,
|
||
inside: {
|
||
'variable': {
|
||
pattern: /(^|[^\\])#[a-z_](?:-?[a-z]|\d)*/m,
|
||
lookbehind: true
|
||
},
|
||
'interpolation': {
|
||
pattern: /(^|[^\\])#\{[^}]+\}/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'interpolation-punctuation': {
|
||
pattern: /^#\{|\}$/,
|
||
alias: 'variable'
|
||
}
|
||
// See rest below
|
||
}
|
||
},
|
||
'string': /[\s\S]+/
|
||
}
|
||
},
|
||
'comment': [
|
||
{
|
||
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /(^|[^\\])#.*/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
}
|
||
],
|
||
'string': [
|
||
{
|
||
pattern: /('''|')(?:\\[\s\S]|(?!\1)[^\\])*\1/,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /<\[[\s\S]*?\]>/,
|
||
greedy: true
|
||
},
|
||
/\\[^\s,;\])}]+/
|
||
],
|
||
'regex': [
|
||
{
|
||
pattern: /\/\/(\[.+?]|\\.|(?!\/\/)[^\\])+\/\/[gimyu]{0,5}/,
|
||
greedy: true,
|
||
inside: {
|
||
'comment': {
|
||
pattern: /(^|[^\\])#.*/,
|
||
lookbehind: true
|
||
}
|
||
}
|
||
},
|
||
{
|
||
pattern: /\/(\[.+?]|\\.|[^/\\\r\n])+\/[gimyu]{0,5}/,
|
||
greedy: true
|
||
}
|
||
],
|
||
'keyword': {
|
||
pattern: /(^|(?!-).)\b(?:break|case|catch|class|const|continue|default|do|else|extends|fallthrough|finally|for(?: ever)?|function|if|implements|it|let|loop|new|null|otherwise|own|return|super|switch|that|then|this|throw|try|unless|until|var|void|when|while|yield)(?!-)\b/m,
|
||
lookbehind: true
|
||
},
|
||
'keyword-operator': {
|
||
pattern: /(^|[^-])\b(?:(?:delete|require|typeof)!|(?:and|by|delete|export|from|import(?: all)?|in|instanceof|is(?:nt| not)?|not|of|or|til|to|typeof|with|xor)(?!-)\b)/m,
|
||
lookbehind: true,
|
||
alias: 'operator'
|
||
},
|
||
'boolean': {
|
||
pattern: /(^|[^-])\b(?:false|no|off|on|true|yes)(?!-)\b/m,
|
||
lookbehind: true
|
||
},
|
||
'argument': {
|
||
// Don't match .&. nor &&
|
||
pattern: /(^|(?!\.&\.)[^&])&(?!&)\d*/m,
|
||
lookbehind: true,
|
||
alias: 'variable'
|
||
},
|
||
'number': /\b(?:\d+~[\da-z]+|\d[\d_]*(?:\.\d[\d_]*)?(?:[a-z]\w*)?)/i,
|
||
'identifier': /[a-z_](?:-?[a-z]|\d)*/i,
|
||
'operator': [
|
||
// Spaced .
|
||
{
|
||
pattern: /( )\.(?= )/,
|
||
lookbehind: true
|
||
},
|
||
// Full list, in order:
|
||
// .= .~ .. ...
|
||
// .&. .^. .<<. .>>. .>>>.
|
||
// := :: ::=
|
||
// &&
|
||
// || |>
|
||
// < << <<< <<<<
|
||
// <- <-- <-! <--!
|
||
// <~ <~~ <~! <~~!
|
||
// <| <= <?
|
||
// > >> >= >?
|
||
// - -- -> -->
|
||
// + ++
|
||
// @ @@
|
||
// % %%
|
||
// * **
|
||
// ! != !~=
|
||
// !~> !~~>
|
||
// !-> !-->
|
||
// ~ ~> ~~> ~=
|
||
// = ==
|
||
// ^ ^^
|
||
// / ?
|
||
/\.(?:[=~]|\.\.?)|\.(?:[&|^]|<<|>>>?)\.|:(?:=|:=?)|&&|\|[|>]|<(?:<<?<?|--?!?|~~?!?|[|=?])?|>[>=?]?|-(?:->?|>)?|\+\+?|@@?|%%?|\*\*?|!(?:~?=|--?>|~?~>)?|~(?:~?>|=)?|==?|\^\^?|[\/?]/
|
||
],
|
||
'punctuation': /[(){}\[\]|.,:;`]/
|
||
};
|
||
|
||
Prism.languages.livescript['interpolated-string'].inside['interpolation'].inside.rest = Prism.languages.livescript;
|
||
Prism.languages.lolcode = {
|
||
'comment': [
|
||
/\bOBTW\s+[\s\S]*?\s+TLDR\b/,
|
||
/\bBTW.+/
|
||
],
|
||
'string': {
|
||
pattern: /"(?::.|[^"])*"/,
|
||
inside: {
|
||
'variable': /:\{[^}]+\}/,
|
||
'symbol': [
|
||
/:\([a-f\d]+\)/i,
|
||
/:\[[^\]]+\]/,
|
||
/:[)>o":]/
|
||
]
|
||
},
|
||
greedy: true
|
||
},
|
||
'number': /(-|\b)\d*\.?\d+/,
|
||
'symbol': {
|
||
pattern: /(^|\s)(?:A )?(?:YARN|NUMBR|NUMBAR|TROOF|BUKKIT|NOOB)(?=\s|,|$)/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': /A(?=\s)/
|
||
}
|
||
},
|
||
'label': {
|
||
pattern: /((?:^|\s)(?:IM IN YR|IM OUTTA YR) )[a-zA-Z]\w*/,
|
||
lookbehind: true,
|
||
alias: 'string'
|
||
},
|
||
'function': {
|
||
pattern: /((?:^|\s)(?:I IZ|HOW IZ I|IZ) )[a-zA-Z]\w*/,
|
||
lookbehind: true
|
||
},
|
||
'keyword': [
|
||
{
|
||
pattern: /(^|\s)(?:O HAI IM|KTHX|HAI|KTHXBYE|I HAS A|ITZ(?: A)?|R|AN|MKAY|SMOOSH|MAEK|IS NOW(?: A)?|VISIBLE|GIMMEH|O RLY\?|YA RLY|NO WAI|OIC|MEBBE|WTF\?|OMG|OMGWTF|GTFO|IM IN YR|IM OUTTA YR|FOUND YR|YR|TIL|WILE|UPPIN|NERFIN|I IZ|HOW IZ I|IF U SAY SO|SRS|HAS A|LIEK(?: A)?|IZ)(?=\s|,|$)/,
|
||
lookbehind: true
|
||
},
|
||
/'Z(?=\s|,|$)/
|
||
],
|
||
'boolean': {
|
||
pattern: /(^|\s)(?:WIN|FAIL)(?=\s|,|$)/,
|
||
lookbehind: true
|
||
},
|
||
'variable': {
|
||
pattern: /(^|\s)IT(?=\s|,|$)/,
|
||
lookbehind: true
|
||
},
|
||
'operator': {
|
||
pattern: /(^|\s)(?:NOT|BOTH SAEM|DIFFRINT|(?:SUM|DIFF|PRODUKT|QUOSHUNT|MOD|BIGGR|SMALLR|BOTH|EITHER|WON|ALL|ANY) OF)(?=\s|,|$)/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /\.{3}|…|,|!/
|
||
};
|
||
Prism.languages.lua = {
|
||
'comment': /^#!.+|--(?:\[(=*)\[[\s\S]*?\]\1\]|.*)/m,
|
||
// \z may be used to skip the following space
|
||
'string': {
|
||
pattern: /(["'])(?:(?!\1)[^\\\r\n]|\\z(?:\r\n|\s)|\\(?:\r\n|[\s\S]))*\1|\[(=*)\[[\s\S]*?\]\2\]/,
|
||
greedy: true
|
||
},
|
||
'number': /\b0x[a-f\d]+\.?[a-f\d]*(?:p[+-]?\d+)?\b|\b\d+(?:\.\B|\.?\d*(?:e[+-]?\d+)?\b)|\B\.\d+(?:e[+-]?\d+)?\b/i,
|
||
'keyword': /\b(?:and|break|do|else|elseif|end|false|for|function|goto|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,
|
||
'function': /(?!\d)\w+(?=\s*(?:[({]))/,
|
||
'operator': [
|
||
/[-+*%^&|#]|\/\/?|<[<=]?|>[>=]?|[=~]=?/,
|
||
{
|
||
// Match ".." but don't break "..."
|
||
pattern: /(^|[^.])\.\.(?!\.)/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'punctuation': /[\[\](){},;]|\.+|:+/
|
||
};
|
||
Prism.languages.makefile = {
|
||
'comment': {
|
||
pattern: /(^|[^\\])#(?:\\(?:\r\n|[\s\S])|.)*/,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
pattern: /(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||
greedy: true
|
||
},
|
||
|
||
// Built-in target names
|
||
'builtin': /\.[A-Z][^:#=\s]+(?=\s*:(?!=))/,
|
||
|
||
// Targets
|
||
'symbol': {
|
||
pattern: /^[^:=\r\n]+(?=\s*:(?!=))/m,
|
||
inside: {
|
||
'variable': /\$+(?:[^(){}:#=\s]+|(?=[({]))/
|
||
}
|
||
},
|
||
'variable': /\$+(?:[^(){}:#=\s]+|\([@*%<^+?][DF]\)|(?=[({]))/,
|
||
|
||
'keyword': [
|
||
// Directives
|
||
/-include\b|\b(?:define|else|endef|endif|export|ifn?def|ifn?eq|include|override|private|sinclude|undefine|unexport|vpath)\b/,
|
||
// Functions
|
||
{
|
||
pattern: /(\()(?:addsuffix|abspath|and|basename|call|dir|error|eval|file|filter(?:-out)?|findstring|firstword|flavor|foreach|guile|if|info|join|lastword|load|notdir|or|origin|patsubst|realpath|shell|sort|strip|subst|suffix|value|warning|wildcard|word(?:s|list)?)(?=[ \t])/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'operator': /(?:::|[?:+!])?=|[|@]/,
|
||
'punctuation': /[:;(){}]/
|
||
};
|
||
Prism.languages.markdown = Prism.languages.extend('markup', {});
|
||
Prism.languages.insertBefore('markdown', 'prolog', {
|
||
'blockquote': {
|
||
// > ...
|
||
pattern: /^>(?:[\t ]*>)*/m,
|
||
alias: 'punctuation'
|
||
},
|
||
'code': [
|
||
{
|
||
// Prefixed by 4 spaces or 1 tab
|
||
pattern: /^(?: {4}|\t).+/m,
|
||
alias: 'keyword'
|
||
},
|
||
{
|
||
// `code`
|
||
// ``code``
|
||
pattern: /``.+?``|`[^`\n]+`/,
|
||
alias: 'keyword'
|
||
}
|
||
],
|
||
'title': [
|
||
{
|
||
// title 1
|
||
// =======
|
||
|
||
// title 2
|
||
// -------
|
||
pattern: /\w+.*(?:\r?\n|\r)(?:==+|--+)/,
|
||
alias: 'important',
|
||
inside: {
|
||
punctuation: /==+$|--+$/
|
||
}
|
||
},
|
||
{
|
||
// # title 1
|
||
// ###### title 6
|
||
pattern: /(^\s*)#+.+/m,
|
||
lookbehind: true,
|
||
alias: 'important',
|
||
inside: {
|
||
punctuation: /^#+|#+$/
|
||
}
|
||
}
|
||
],
|
||
'hr': {
|
||
// ***
|
||
// ---
|
||
// * * *
|
||
// -----------
|
||
pattern: /(^\s*)([*-])([\t ]*\2){2,}(?=\s*$)/m,
|
||
lookbehind: true,
|
||
alias: 'punctuation'
|
||
},
|
||
'list': {
|
||
// * item
|
||
// + item
|
||
// - item
|
||
// 1. item
|
||
pattern: /(^\s*)(?:[*+-]|\d+\.)(?=[\t ].)/m,
|
||
lookbehind: true,
|
||
alias: 'punctuation'
|
||
},
|
||
'url-reference': {
|
||
// [id]: http://example.com "Optional title"
|
||
// [id]: http://example.com 'Optional title'
|
||
// [id]: http://example.com (Optional title)
|
||
// [id]: <http://example.com> "Optional title"
|
||
pattern: /!?\[[^\]]+\]:[\t ]+(?:\S+|<(?:\\.|[^>\\])+>)(?:[\t ]+(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\)))?/,
|
||
inside: {
|
||
'variable': {
|
||
pattern: /^(!?\[)[^\]]+/,
|
||
lookbehind: true
|
||
},
|
||
'string': /(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\))$/,
|
||
'punctuation': /^[\[\]!:]|[<>]/
|
||
},
|
||
alias: 'url'
|
||
},
|
||
'bold': {
|
||
// **strong**
|
||
// __strong__
|
||
|
||
// Allow only one line break
|
||
pattern: /(^|[^\\])(\*\*|__)(?:(?:\r?\n|\r)(?!\r?\n|\r)|.)+?\2/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'punctuation': /^\*\*|^__|\*\*$|__$/
|
||
}
|
||
},
|
||
'italic': {
|
||
// *em*
|
||
// _em_
|
||
|
||
// Allow only one line break
|
||
pattern: /(^|[^\\])([*_])(?:(?:\r?\n|\r)(?!\r?\n|\r)|.)+?\2/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'punctuation': /^[*_]|[*_]$/
|
||
}
|
||
},
|
||
'url': {
|
||
// [example](http://example.com "Optional title")
|
||
// [example] [id]
|
||
pattern: /!?\[[^\]]+\](?:\([^\s)]+(?:[\t ]+"(?:\\.|[^"\\])*")?\)| ?\[[^\]\n]*\])/,
|
||
inside: {
|
||
'variable': {
|
||
pattern: /(!?\[)[^\]]+(?=\]$)/,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
pattern: /"(?:\\.|[^"\\])*"(?=\)$)/
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
Prism.languages.markdown['bold'].inside['url'] = Prism.util.clone(Prism.languages.markdown['url']);
|
||
Prism.languages.markdown['italic'].inside['url'] = Prism.util.clone(Prism.languages.markdown['url']);
|
||
Prism.languages.markdown['bold'].inside['italic'] = Prism.util.clone(Prism.languages.markdown['italic']);
|
||
Prism.languages.markdown['italic'].inside['bold'] = Prism.util.clone(Prism.languages.markdown['bold']);
|
||
Prism.languages.matlab = {
|
||
// We put string before comment, because of printf() patterns that contain "%"
|
||
'string': /\B'(?:''|[^'\n])*'/,
|
||
'comment': [
|
||
/%\{[\s\S]*?\}%/,
|
||
/%.+/
|
||
],
|
||
// FIXME We could handle imaginary numbers as a whole
|
||
'number': /\b-?(?:\d*\.?\d+(?:[eE][+-]?\d+)?(?:[ij])?|[ij])\b/,
|
||
'keyword': /\b(?:break|case|catch|continue|else|elseif|end|for|function|if|inf|NaN|otherwise|parfor|pause|pi|return|switch|try|while)\b/,
|
||
'function': /(?!\d)\w+(?=\s*\()/,
|
||
'operator': /\.?[*^\/\\']|[+\-:@]|[<>=~]=?|&&?|\|\|?/,
|
||
'punctuation': /\.{3}|[.,;\[\](){}!]/
|
||
};
|
||
Prism.languages.mel = {
|
||
'comment': /\/\/.*/,
|
||
'code': {
|
||
pattern: /`(?:\\.|[^\\`\r\n])*`/,
|
||
greedy: true,
|
||
alias: 'italic',
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^`|`$/,
|
||
alias: 'punctuation'
|
||
}
|
||
// See rest below
|
||
}
|
||
},
|
||
'string': {
|
||
pattern: /"(?:\\.|[^\\"\r\n])*"/,
|
||
greedy: true
|
||
},
|
||
'variable': /\$\w+/,
|
||
'number': /(?:\b|-)(?:0x[\da-fA-F]+|\d+\.?\d*)/,
|
||
'flag': {
|
||
pattern: /-[^\d\W]\w*/,
|
||
alias: 'operator'
|
||
},
|
||
'keyword': /\b(?:break|case|continue|default|do|else|float|for|global|if|in|int|matrix|proc|return|string|switch|vector|while)\b/,
|
||
'function': /\w+(?=\()|\b(?:about|abs|addAttr|addAttributeEditorNodeHelp|addDynamic|addNewShelfTab|addPP|addPanelCategory|addPrefixToName|advanceToNextDrivenKey|affectedNet|affects|aimConstraint|air|alias|aliasAttr|align|alignCtx|alignCurve|alignSurface|allViewFit|ambientLight|angle|angleBetween|animCone|animCurveEditor|animDisplay|animView|annotate|appendStringArray|applicationName|applyAttrPreset|applyTake|arcLenDimContext|arcLengthDimension|arclen|arrayMapper|art3dPaintCtx|artAttrCtx|artAttrPaintVertexCtx|artAttrSkinPaintCtx|artAttrTool|artBuildPaintMenu|artFluidAttrCtx|artPuttyCtx|artSelectCtx|artSetPaintCtx|artUserPaintCtx|assignCommand|assignInputDevice|assignViewportFactories|attachCurve|attachDeviceAttr|attachSurface|attrColorSliderGrp|attrCompatibility|attrControlGrp|attrEnumOptionMenu|attrEnumOptionMenuGrp|attrFieldGrp|attrFieldSliderGrp|attrNavigationControlGrp|attrPresetEditWin|attributeExists|attributeInfo|attributeMenu|attributeQuery|autoKeyframe|autoPlace|bakeClip|bakeFluidShading|bakePartialHistory|bakeResults|bakeSimulation|basename|basenameEx|batchRender|bessel|bevel|bevelPlus|binMembership|bindSkin|blend2|blendShape|blendShapeEditor|blendShapePanel|blendTwoAttr|blindDataType|boneLattice|boundary|boxDollyCtx|boxZoomCtx|bufferCurve|buildBookmarkMenu|buildKeyframeMenu|button|buttonManip|CBG|cacheFile|cacheFileCombine|cacheFileMerge|cacheFileTrack|camera|cameraView|canCreateManip|canvas|capitalizeString|catch|catchQuiet|ceil|changeSubdivComponentDisplayLevel|changeSubdivRegion|channelBox|character|characterMap|characterOutlineEditor|characterize|chdir|checkBox|checkBoxGrp|checkDefaultRenderGlobals|choice|circle|circularFillet|clamp|clear|clearCache|clip|clipEditor|clipEditorCurrentTimeCtx|clipSchedule|clipSchedulerOutliner|clipTrimBefore|closeCurve|closeSurface|cluster|cmdFileOutput|cmdScrollFieldExecuter|cmdScrollFieldReporter|cmdShell|coarsenSubdivSelectionList|collision|color|colorAtPoint|colorEditor|colorIndex|colorIndexSliderGrp|colorSliderButtonGrp|colorSliderGrp|columnLayout|commandEcho|commandLine|commandPort|compactHairSystem|componentEditor|compositingInterop|computePolysetVolume|condition|cone|confirmDialog|connectAttr|connectControl|connectDynamic|connectJoint|connectionInfo|constrain|constrainValue|constructionHistory|container|containsMultibyte|contextInfo|control|convertFromOldLayers|convertIffToPsd|convertLightmap|convertSolidTx|convertTessellation|convertUnit|copyArray|copyFlexor|copyKey|copySkinWeights|cos|cpButton|cpCache|cpClothSet|cpCollision|cpConstraint|cpConvClothToMesh|cpForces|cpGetSolverAttr|cpPanel|cpProperty|cpRigidCollisionFilter|cpSeam|cpSetEdit|cpSetSolverAttr|cpSolver|cpSolverTypes|cpTool|cpUpdateClothUVs|createDisplayLayer|createDrawCtx|createEditor|createLayeredPsdFile|createMotionField|createNewShelf|createNode|createRenderLayer|createSubdivRegion|cross|crossProduct|ctxAbort|ctxCompletion|ctxEditMode|ctxTraverse|currentCtx|currentTime|currentTimeCtx|currentUnit|curve|curveAddPtCtx|curveCVCtx|curveEPCtx|curveEditorCtx|curveIntersect|curveMoveEPCtx|curveOnSurface|curveSketchCtx|cutKey|cycleCheck|cylinder|dagPose|date|defaultLightListCheckBox|defaultNavigation|defineDataServer|defineVirtualDevice|deformer|deg_to_rad|delete|deleteAttr|deleteShadingGroupsAndMaterials|deleteShelfTab|deleteUI|deleteUnusedBrushes|delrandstr|detachCurve|detachDeviceAttr|detachSurface|deviceEditor|devicePanel|dgInfo|dgdirty|dgeval|dgtimer|dimWhen|directKeyCtx|directionalLight|dirmap|dirname|disable|disconnectAttr|disconnectJoint|diskCache|displacementToPoly|displayAffected|displayColor|displayCull|displayLevelOfDetail|displayPref|displayRGBColor|displaySmoothness|displayStats|displayString|displaySurface|distanceDimContext|distanceDimension|doBlur|dolly|dollyCtx|dopeSheetEditor|dot|dotProduct|doubleProfileBirailSurface|drag|dragAttrContext|draggerContext|dropoffLocator|duplicate|duplicateCurve|duplicateSurface|dynCache|dynControl|dynExport|dynExpression|dynGlobals|dynPaintEditor|dynParticleCtx|dynPref|dynRelEdPanel|dynRelEditor|dynamicLoad|editAttrLimits|editDisplayLayerGlobals|editDisplayLayerMembers|editRenderLayerAdjustment|editRenderLayerGlobals|editRenderLayerMembers|editor|editorTemplate|effector|emit|emitter|enableDevice|encodeString|endString|endsWith|env|equivalent|equivalentTol|erf|error|eval|evalDeferred|evalEcho|event|exactWorldBoundingBox|exclusiveLightCheckBox|exec|executeForEachObject|exists|exp|expression|expressionEditorListen|extendCurve|extendSurface|extrude|fcheck|fclose|feof|fflush|fgetline|fgetword|file|fileBrowserDialog|fileDialog|fileExtension|fileInfo|filetest|filletCurve|filter|filterCurve|filterExpand|filterStudioImport|findAllIntersections|findAnimCurves|findKeyframe|findMenuItem|findRelatedSkinCluster|finder|firstParentOf|fitBspline|flexor|floatEq|floatField|floatFieldGrp|floatScrollBar|floatSlider|floatSlider2|floatSliderButtonGrp|floatSliderGrp|floor|flow|fluidCacheInfo|fluidEmitter|fluidVoxelInfo|flushUndo|fmod|fontDialog|fopen|formLayout|format|fprint|frameLayout|fread|freeFormFillet|frewind|fromNativePath|fwrite|gamma|gauss|geometryConstraint|getApplicationVersionAsFloat|getAttr|getClassification|getDefaultBrush|getFileList|getFluidAttr|getInputDeviceRange|getMayaPanelTypes|getModifiers|getPanel|getParticleAttr|getPluginResource|getenv|getpid|glRender|glRenderEditor|globalStitch|gmatch|goal|gotoBindPose|grabColor|gradientControl|gradientControlNoAttr|graphDollyCtx|graphSelectContext|graphTrackCtx|gravity|grid|gridLayout|group|groupObjectsByName|HfAddAttractorToAS|HfAssignAS|HfBuildEqualMap|HfBuildFurFiles|HfBuildFurImages|HfCancelAFR|HfConnectASToHF|HfCreateAttractor|HfDeleteAS|HfEditAS|HfPerformCreateAS|HfRemoveAttractorFromAS|HfSelectAttached|HfSelectAttractors|HfUnAssignAS|hardenPointCurve|hardware|hardwareRenderPanel|headsUpDisplay|headsUpMessage|help|helpLine|hermite|hide|hilite|hitTest|hotBox|hotkey|hotkeyCheck|hsv_to_rgb|hudButton|hudSlider|hudSliderButton|hwReflectionMap|hwRender|hwRenderLoad|hyperGraph|hyperPanel|hyperShade|hypot|iconTextButton|iconTextCheckBox|iconTextRadioButton|iconTextRadioCollection|iconTextScrollList|iconTextStaticLabel|ikHandle|ikHandleCtx|ikHandleDisplayScale|ikSolver|ikSplineHandleCtx|ikSystem|ikSystemInfo|ikfkDisplayMethod|illustratorCurves|image|imfPlugins|inheritTransform|insertJoint|insertJointCtx|insertKeyCtx|insertKnotCurve|insertKnotSurface|instance|instanceable|instancer|intField|intFieldGrp|intScrollBar|intSlider|intSliderGrp|interToUI|internalVar|intersect|iprEngine|isAnimCurve|isConnected|isDirty|isParentOf|isSameObject|isTrue|isValidObjectName|isValidString|isValidUiName|isolateSelect|itemFilter|itemFilterAttr|itemFilterRender|itemFilterType|joint|jointCluster|jointCtx|jointDisplayScale|jointLattice|keyTangent|keyframe|keyframeOutliner|keyframeRegionCurrentTimeCtx|keyframeRegionDirectKeyCtx|keyframeRegionDollyCtx|keyframeRegionInsertKeyCtx|keyframeRegionMoveKeyCtx|keyframeRegionScaleKeyCtx|keyframeRegionSelectKeyCtx|keyframeRegionSetKeyCtx|keyframeRegionTrackCtx|keyframeStats|lassoContext|lattice|latticeDeformKeyCtx|launch|launchImageEditor|layerButton|layeredShaderPort|layeredTexturePort|layout|layoutDialog|lightList|lightListEditor|lightListPanel|lightlink|lineIntersection|linearPrecision|linstep|listAnimatable|listAttr|listCameras|listConnections|listDeviceAttachments|listHistory|listInputDeviceAxes|listInputDeviceButtons|listInputDevices|listMenuAnnotation|listNodeTypes|listPanelCategories|listRelatives|listSets|listTransforms|listUnselected|listerEditor|loadFluid|loadNewShelf|loadPlugin|loadPluginLanguageResources|loadPrefObjects|localizedPanelLabel|lockNode|loft|log|longNameOf|lookThru|ls|lsThroughFilter|lsType|lsUI|Mayatomr|mag|makeIdentity|makeLive|makePaintable|makeRoll|makeSingleSurface|makeTubeOn|makebot|manipMoveContext|manipMoveLimitsCtx|manipOptions|manipRotateContext|manipRotateLimitsCtx|manipScaleContext|manipScaleLimitsCtx|marker|match|max|memory|menu|menuBarLayout|menuEditor|menuItem|menuItemToShelf|menuSet|menuSetPref|messageLine|min|minimizeApp|mirrorJoint|modelCurrentTimeCtx|modelEditor|modelPanel|mouse|movIn|movOut|move|moveIKtoFK|moveKeyCtx|moveVertexAlongDirection|multiProfileBirailSurface|mute|nParticle|nameCommand|nameField|namespace|namespaceInfo|newPanelItems|newton|nodeCast|nodeIconButton|nodeOutliner|nodePreset|nodeType|noise|nonLinear|normalConstraint|normalize|nurbsBoolean|nurbsCopyUVSet|nurbsCube|nurbsEditUV|nurbsPlane|nurbsSelect|nurbsSquare|nurbsToPoly|nurbsToPolygonsPref|nurbsToSubdiv|nurbsToSubdivPref|nurbsUVSet|nurbsViewDirectionVector|objExists|objectCenter|objectLayer|objectType|objectTypeUI|obsoleteProc|oceanNurbsPreviewPlane|offsetCurve|offsetCurveOnSurface|offsetSurface|openGLExtension|openMayaPref|optionMenu|optionMenuGrp|optionVar|orbit|orbitCtx|orientConstraint|outlinerEditor|outlinerPanel|overrideModifier|paintEffectsDisplay|pairBlend|palettePort|paneLayout|panel|panelConfiguration|panelHistory|paramDimContext|paramDimension|paramLocator|parent|parentConstraint|particle|particleExists|particleInstancer|particleRenderInfo|partition|pasteKey|pathAnimation|pause|pclose|percent|performanceOptions|pfxstrokes|pickWalk|picture|pixelMove|planarSrf|plane|play|playbackOptions|playblast|plugAttr|plugNode|pluginInfo|pluginResourceUtil|pointConstraint|pointCurveConstraint|pointLight|pointMatrixMult|pointOnCurve|pointOnSurface|pointPosition|poleVectorConstraint|polyAppend|polyAppendFacetCtx|polyAppendVertex|polyAutoProjection|polyAverageNormal|polyAverageVertex|polyBevel|polyBlendColor|polyBlindData|polyBoolOp|polyBridgeEdge|polyCacheMonitor|polyCheck|polyChipOff|polyClipboard|polyCloseBorder|polyCollapseEdge|polyCollapseFacet|polyColorBlindData|polyColorDel|polyColorPerVertex|polyColorSet|polyCompare|polyCone|polyCopyUV|polyCrease|polyCreaseCtx|polyCreateFacet|polyCreateFacetCtx|polyCube|polyCut|polyCutCtx|polyCylinder|polyCylindricalProjection|polyDelEdge|polyDelFacet|polyDelVertex|polyDuplicateAndConnect|polyDuplicateEdge|polyEditUV|polyEditUVShell|polyEvaluate|polyExtrudeEdge|polyExtrudeFacet|polyExtrudeVertex|polyFlipEdge|polyFlipUV|polyForceUV|polyGeoSampler|polyHelix|polyInfo|polyInstallAction|polyLayoutUV|polyListComponentConversion|polyMapCut|polyMapDel|polyMapSew|polyMapSewMove|polyMergeEdge|polyMergeEdgeCtx|polyMergeFacet|polyMergeFacetCtx|polyMergeUV|polyMergeVertex|polyMirrorFace|polyMoveEdge|polyMoveFacet|polyMoveFacetUV|polyMoveUV|polyMoveVertex|polyNormal|polyNormalPerVertex|polyNormalizeUV|polyOptUvs|polyOptions|polyOutput|polyPipe|polyPlanarProjection|polyPlane|polyPlatonicSolid|polyPoke|polyPrimitive|polyPrism|polyProjection|polyPyramid|polyQuad|polyQueryBlindData|polyReduce|polySelect|polySelectConstraint|polySelectConstraintMonitor|polySelectCtx|polySelectEditCtx|polySeparate|polySetToFaceNormal|polySewEdge|polyShortestPathCtx|polySmooth|polySoftEdge|polySphere|polySphericalProjection|polySplit|polySplitCtx|polySplitEdge|polySplitRing|polySplitVertex|polyStraightenUVBorder|polySubdivideEdge|polySubdivideFacet|polyToSubdiv|polyTorus|polyTransfer|polyTriangulate|polyUVSet|polyUnite|polyWedgeFace|popen|popupMenu|pose|pow|preloadRefEd|print|progressBar|progressWindow|projFileViewer|projectCurve|projectTangent|projectionContext|projectionManip|promptDialog|propModCtx|propMove|psdChannelOutliner|psdEditTextureFile|psdExport|psdTextureFile|putenv|pwd|python|querySubdiv|quit|rad_to_deg|radial|radioButton|radioButtonGrp|radioCollection|radioMenuItemCollection|rampColorPort|rand|randomizeFollicles|randstate|rangeControl|readTake|rebuildCurve|rebuildSurface|recordAttr|recordDevice|redo|reference|referenceEdit|referenceQuery|refineSubdivSelectionList|refresh|refreshAE|registerPluginResource|rehash|reloadImage|removeJoint|removeMultiInstance|removePanelCategory|rename|renameAttr|renameSelectionList|renameUI|render|renderGlobalsNode|renderInfo|renderLayerButton|renderLayerParent|renderLayerPostProcess|renderLayerUnparent|renderManip|renderPartition|renderQualityNode|renderSettings|renderThumbnailUpdate|renderWindowEditor|renderWindowSelectContext|renderer|reorder|reorderDeformers|requires|reroot|resampleFluid|resetAE|resetPfxToPolyCamera|resetTool|resolutionNode|retarget|reverseCurve|reverseSurface|revolve|rgb_to_hsv|rigidBody|rigidSolver|roll|rollCtx|rootOf|rot|rotate|rotationInterpolation|roundConstantRadius|rowColumnLayout|rowLayout|runTimeCommand|runup|sampleImage|saveAllShelves|saveAttrPreset|saveFluid|saveImage|saveInitialState|saveMenu|savePrefObjects|savePrefs|saveShelf|saveToolSettings|scale|scaleBrushBrightness|scaleComponents|scaleConstraint|scaleKey|scaleKeyCtx|sceneEditor|sceneUIReplacement|scmh|scriptCtx|scriptEditorInfo|scriptJob|scriptNode|scriptTable|scriptToShelf|scriptedPanel|scriptedPanelType|scrollField|scrollLayout|sculpt|searchPathArray|seed|selLoadSettings|select|selectContext|selectCurveCV|selectKey|selectKeyCtx|selectKeyframeRegionCtx|selectMode|selectPref|selectPriority|selectType|selectedNodes|selectionConnection|separator|setAttr|setAttrEnumResource|setAttrMapping|setAttrNiceNameResource|setConstraintRestPosition|setDefaultShadingGroup|setDrivenKeyframe|setDynamic|setEditCtx|setEditor|setFluidAttr|setFocus|setInfinity|setInputDeviceMapping|setKeyCtx|setKeyPath|setKeyframe|setKeyframeBlendshapeTargetWts|setMenuMode|setNodeNiceNameResource|setNodeTypeFlag|setParent|setParticleAttr|setPfxToPolyCamera|setPluginResource|setProject|setStampDensity|setStartupMessage|setState|setToolTo|setUITemplate|setXformManip|sets|shadingConnection|shadingGeometryRelCtx|shadingLightRelCtx|shadingNetworkCompare|shadingNode|shapeCompare|shelfButton|shelfLayout|shelfTabLayout|shellField|shortNameOf|showHelp|showHidden|showManipCtx|showSelectionInTitle|showShadingGroupAttrEditor|showWindow|sign|simplify|sin|singleProfileBirailSurface|size|sizeBytes|skinCluster|skinPercent|smoothCurve|smoothTangentSurface|smoothstep|snap2to2|snapKey|snapMode|snapTogetherCtx|snapshot|soft|softMod|softModCtx|sort|sound|soundControl|source|spaceLocator|sphere|sphrand|spotLight|spotLightPreviewPort|spreadSheetEditor|spring|sqrt|squareSurface|srtContext|stackTrace|startString|startsWith|stitchAndExplodeShell|stitchSurface|stitchSurfacePoints|strcmp|stringArrayCatenate|stringArrayContains|stringArrayCount|stringArrayInsertAtIndex|stringArrayIntersector|stringArrayRemove|stringArrayRemoveAtIndex|stringArrayRemoveDuplicates|stringArrayRemoveExact|stringArrayToString|stringToStringArray|strip|stripPrefixFromName|stroke|subdAutoProjection|subdCleanTopology|subdCollapse|subdDuplicateAndConnect|subdEditUV|subdListComponentConversion|subdMapCut|subdMapSewMove|subdMatchTopology|subdMirror|subdToBlind|subdToPoly|subdTransferUVsToCache|subdiv|subdivCrease|subdivDisplaySmoothness|substitute|substituteAllString|substituteGeometry|substring|surface|surfaceSampler|surfaceShaderList|swatchDisplayPort|switchTable|symbolButton|symbolCheckBox|sysFile|system|tabLayout|tan|tangentConstraint|texLatticeDeformContext|texManipContext|texMoveContext|texMoveUVShellContext|texRotateContext|texScaleContext|texSelectContext|texSelectShortestPathCtx|texSmudgeUVContext|texWinToolCtx|text|textCurves|textField|textFieldButtonGrp|textFieldGrp|textManip|textScrollList|textToShelf|textureDisplacePlane|textureHairColor|texturePlacementContext|textureWindow|threadCount|threePointArcCtx|timeControl|timePort|timerX|toNativePath|toggle|toggleAxis|toggleWindowVisibility|tokenize|tokenizeList|tolerance|tolower|toolButton|toolCollection|toolDropped|toolHasOptions|toolPropertyWindow|torus|toupper|trace|track|trackCtx|transferAttributes|transformCompare|transformLimits|translator|trim|trunc|truncateFluidCache|truncateHairCache|tumble|tumbleCtx|turbulence|twoPointArcCtx|uiRes|uiTemplate|unassignInputDevice|undo|undoInfo|ungroup|uniform|unit|unloadPlugin|untangleUV|untitledFileName|untrim|upAxis|updateAE|userCtx|uvLink|uvSnapshot|validateShelfName|vectorize|view2dToolCtx|viewCamera|viewClipPlane|viewFit|viewHeadOn|viewLookAt|viewManip|viewPlace|viewSet|visor|volumeAxis|vortex|waitCursor|warning|webBrowser|webBrowserPrefs|whatIs|window|windowPref|wire|wireContext|workspace|wrinkle|wrinkleContext|writeTake|xbmLangPathList|xform)\b/,
|
||
|
||
'operator': [
|
||
/\+[+=]?|-[-=]?|&&|\|\||[<>]=|[*\/!=]=?|[%^]/,
|
||
{
|
||
// We don't want to match <<
|
||
pattern: /(^|[^<])<(?!<)/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
// We don't want to match >>
|
||
pattern: /(^|[^>])>(?!>)/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'punctuation': /<<|>>|[.,:;?\[\](){}]/
|
||
};
|
||
Prism.languages.mel['code'].inside.rest = Prism.util.clone(Prism.languages.mel);
|
||
Prism.languages.mizar = {
|
||
'comment': /::.+/,
|
||
'keyword': /@proof\b|\b(?:according|aggregate|all|and|antonym|are|as|associativity|assume|asymmetry|attr|be|begin|being|by|canceled|case|cases|clusters?|coherence|commutativity|compatibility|connectedness|consider|consistency|constructors|contradiction|correctness|def|deffunc|define|definitions?|defpred|do|does|equals|end|environ|ex|exactly|existence|for|from|func|given|hence|hereby|holds|idempotence|identity|iff?|implies|involutiveness|irreflexivity|is|it|let|means|mode|non|not|notations?|now|of|or|otherwise|over|per|pred|prefix|projectivity|proof|provided|qua|reconsider|redefine|reduce|reducibility|reflexivity|registrations?|requirements|reserve|sch|schemes?|section|selector|set|sethood|st|struct|such|suppose|symmetry|synonym|take|that|the|then|theorems?|thesis|thus|to|transitivity|uniqueness|vocabular(?:y|ies)|when|where|with|wrt)\b/,
|
||
'parameter': {
|
||
pattern: /\$(?:10|\d)/,
|
||
alias: 'variable'
|
||
},
|
||
'variable': /\w+(?=:)/,
|
||
'number': /(?:\b|-)\d+\b/,
|
||
'operator': /\.\.\.|->|&|\.?=/,
|
||
'punctuation': /\(#|#\)|[,:;\[\](){}]/
|
||
};
|
||
Prism.languages.monkey = {
|
||
'string': /"[^"\r\n]*"/,
|
||
'comment': [
|
||
/^#Rem\s+[\s\S]*?^#End/im,
|
||
/'.+/,
|
||
],
|
||
'preprocessor': {
|
||
pattern: /(^[ \t]*)#.+/m,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
},
|
||
'function': /\w+(?=\()/,
|
||
'type-char': {
|
||
pattern: /(\w)[?%#$]/,
|
||
lookbehind: true,
|
||
alias: 'variable'
|
||
},
|
||
'number': {
|
||
pattern: /((?:\.\.)?)(?:(?:\b|\B-\.?|\B\.)\d+((?!\.\.)\.\d*)?|\$[\da-f]+)/i,
|
||
lookbehind: true
|
||
},
|
||
'keyword': /\b(?:Void|Strict|Public|Private|Property|Bool|Int|Float|String|Array|Object|Continue|Exit|Import|Extern|New|Self|Super|Try|Catch|Eachin|True|False|Extends|Abstract|Final|Select|Case|Default|Const|Local|Global|Field|Method|Function|Class|End|If|Then|Else|ElseIf|EndIf|While|Wend|Repeat|Until|Forever|For|To|Step|Next|Return|Module|Interface|Implements|Inline|Throw|Null)\b/i,
|
||
'operator': /\.\.|<[=>]?|>=?|:?=|(?:[+\-*\/&~|]|\b(?:Mod|Shl|Shr)\b)=?|\b(?:And|Not|Or)\b/i,
|
||
'punctuation': /[.,:;()\[\]]/
|
||
};
|
||
Prism.languages.nasm = {
|
||
'comment': /;.*$/m,
|
||
'string': /("|'|`)(\\?.)*?\1/m,
|
||
'label': {
|
||
pattern: /(^\s*)[A-Za-z._?$][\w.?$@~#]*:/m,
|
||
lookbehind: true,
|
||
alias: 'function'
|
||
},
|
||
'keyword': [
|
||
/\[?BITS (16|32|64)\]?/m,
|
||
{
|
||
pattern: /(^\s*)section\s*[a-zA-Z\.]+:?/im,
|
||
lookbehind: true
|
||
},
|
||
/(?:extern|global)[^;\r\n]*/im,
|
||
/(?:CPU|FLOAT|DEFAULT).*$/m
|
||
],
|
||
'register': {
|
||
pattern: /\b(?:st\d|[xyz]mm\d\d?|[cdt]r\d|r\d\d?[bwd]?|[er]?[abcd]x|[abcd][hl]|[er]?(bp|sp|si|di)|[cdefgs]s)\b/i,
|
||
alias: 'variable'
|
||
},
|
||
'number': /(\b|-|(?=\$))(0[hx][\da-f]*\.?[\da-f]+(p[+-]?\d+)?|\d[\da-f]+[hx]|\$\d[\da-f]*|0[oq][0-7]+|[0-7]+[oq]|0[by][01]+|[01]+[by]|0[dt]\d+|\d*\.?\d+(\.?e[+-]?\d+)?[dt]?)\b/i,
|
||
'operator': /[\[\]*+\-\/%<>=&|$!]/
|
||
};
|
||
|
||
Prism.languages.nginx = Prism.languages.extend('clike', {
|
||
'comment': {
|
||
pattern: /(^|[^"{\\])#.*/,
|
||
lookbehind: true
|
||
},
|
||
'keyword': /\b(?:CONTENT_|DOCUMENT_|GATEWAY_|HTTP_|HTTPS|if_not_empty|PATH_|QUERY_|REDIRECT_|REMOTE_|REQUEST_|SCGI|SCRIPT_|SERVER_|http|server|events|location|include|accept_mutex|accept_mutex_delay|access_log|add_after_body|add_before_body|add_header|addition_types|aio|alias|allow|ancient_browser|ancient_browser_value|auth|auth_basic|auth_basic_user_file|auth_http|auth_http_header|auth_http_timeout|autoindex|autoindex_exact_size|autoindex_localtime|break|charset|charset_map|charset_types|chunked_transfer_encoding|client_body_buffer_size|client_body_in_file_only|client_body_in_single_buffer|client_body_temp_path|client_body_timeout|client_header_buffer_size|client_header_timeout|client_max_body_size|connection_pool_size|create_full_put_path|daemon|dav_access|dav_methods|debug_connection|debug_points|default_type|deny|devpoll_changes|devpoll_events|directio|directio_alignment|disable_symlinks|empty_gif|env|epoll_events|error_log|error_page|expires|fastcgi_buffer_size|fastcgi_buffers|fastcgi_busy_buffers_size|fastcgi_cache|fastcgi_cache_bypass|fastcgi_cache_key|fastcgi_cache_lock|fastcgi_cache_lock_timeout|fastcgi_cache_methods|fastcgi_cache_min_uses|fastcgi_cache_path|fastcgi_cache_purge|fastcgi_cache_use_stale|fastcgi_cache_valid|fastcgi_connect_timeout|fastcgi_hide_header|fastcgi_ignore_client_abort|fastcgi_ignore_headers|fastcgi_index|fastcgi_intercept_errors|fastcgi_keep_conn|fastcgi_max_temp_file_size|fastcgi_next_upstream|fastcgi_no_cache|fastcgi_param|fastcgi_pass|fastcgi_pass_header|fastcgi_read_timeout|fastcgi_redirect_errors|fastcgi_send_timeout|fastcgi_split_path_info|fastcgi_store|fastcgi_store_access|fastcgi_temp_file_write_size|fastcgi_temp_path|flv|geo|geoip_city|geoip_country|google_perftools_profiles|gzip|gzip_buffers|gzip_comp_level|gzip_disable|gzip_http_version|gzip_min_length|gzip_proxied|gzip_static|gzip_types|gzip_vary|if|if_modified_since|ignore_invalid_headers|image_filter|image_filter_buffer|image_filter_jpeg_quality|image_filter_sharpen|image_filter_transparency|imap_capabilities|imap_client_buffer|include|index|internal|ip_hash|keepalive|keepalive_disable|keepalive_requests|keepalive_timeout|kqueue_changes|kqueue_events|large_client_header_buffers|limit_conn|limit_conn_log_level|limit_conn_zone|limit_except|limit_rate|limit_rate_after|limit_req|limit_req_log_level|limit_req_zone|limit_zone|lingering_close|lingering_time|lingering_timeout|listen|location|lock_file|log_format|log_format_combined|log_not_found|log_subrequest|map|map_hash_bucket_size|map_hash_max_size|master_process|max_ranges|memcached_buffer_size|memcached_connect_timeout|memcached_next_upstream|memcached_pass|memcached_read_timeout|memcached_send_timeout|merge_slashes|min_delete_depth|modern_browser|modern_browser_value|mp4|mp4_buffer_size|mp4_max_buffer_size|msie_padding|msie_refresh|multi_accept|open_file_cache|open_file_cache_errors|open_file_cache_min_uses|open_file_cache_valid|open_log_file_cache|optimize_server_names|override_charset|pcre_jit|perl|perl_modules|perl_require|perl_set|pid|pop3_auth|pop3_capabilities|port_in_redirect|post_action|postpone_output|protocol|proxy|proxy_buffer|proxy_buffer_size|proxy_buffering|proxy_buffers|proxy_busy_buffers_size|proxy_cache|proxy_cache_bypass|proxy_cache_key|proxy_cache_lock|proxy_cache_lock_timeout|proxy_cache_methods|proxy_cache_min_uses|proxy_cache_path|proxy_cache_use_stale|proxy_cache_valid|proxy_connect_timeout|proxy_cookie_domain|proxy_cookie_path|proxy_headers_hash_bucket_size|proxy_headers_hash_max_size|proxy_hide_header|proxy_http_version|proxy_ignore_client_abort|proxy_ignore_headers|proxy_intercept_errors|proxy_max_temp_file_size|proxy_method|proxy_next_upstream|proxy_no_cache|proxy_pass|proxy_pass_error_message|proxy_pass_header|proxy_pass_request_body|proxy_pass_request_headers|proxy_read_timeout|proxy_redirect|proxy_redirect_errors|proxy_send_lowat|proxy_send_timeout|proxy_set_body|proxy_set_header|proxy_ssl_session_reuse|proxy_store|proxy_store_access|proxy_temp_file_write_size|proxy_temp_path|proxy_timeout|proxy_upstream_fail_timeout|proxy_upstream_max_fails|random_index|read_ahead|real_ip_header|recursive_error_pages|request_pool_size|reset_timedout_connection|resolver|resolver_timeout|return|rewrite|root|rtsig_overflow_events|rtsig_overflow_test|rtsig_overflow_threshold|rtsig_signo|satisfy|satisfy_any|secure_link_secret|send_lowat|send_timeout|sendfile|sendfile_max_chunk|server|server_name|server_name_in_redirect|server_names_hash_bucket_size|server_names_hash_max_size|server_tokens|set|set_real_ip_from|smtp_auth|smtp_capabilities|so_keepalive|source_charset|split_clients|ssi|ssi_silent_errors|ssi_types|ssi_value_length|ssl|ssl_certificate|ssl_certificate_key|ssl_ciphers|ssl_client_certificate|ssl_crl|ssl_dhparam|ssl_engine|ssl_prefer_server_ciphers|ssl_protocols|ssl_session_cache|ssl_session_timeout|ssl_verify_client|ssl_verify_depth|starttls|stub_status|sub_filter|sub_filter_once|sub_filter_types|tcp_nodelay|tcp_nopush|timeout|timer_resolution|try_files|types|types_hash_bucket_size|types_hash_max_size|underscores_in_headers|uninitialized_variable_warn|upstream|use|user|userid|userid_domain|userid_expires|userid_name|userid_p3p|userid_path|userid_service|valid_referers|variables_hash_bucket_size|variables_hash_max_size|worker_connections|worker_cpu_affinity|worker_priority|worker_processes|worker_rlimit_core|worker_rlimit_nofile|worker_rlimit_sigpending|working_directory|xclient|xml_entities|xslt_entities|xslt_stylesheet|xslt_types)\b/i,
|
||
});
|
||
|
||
Prism.languages.insertBefore('nginx', 'keyword', {
|
||
'variable': /\$[a-z_]+/i
|
||
});
|
||
Prism.languages.nim = {
|
||
'comment': /#.*/,
|
||
// Double-quoted strings can be prefixed by an identifier (Generalized raw string literals)
|
||
// Character literals are handled specifically to prevent issues with numeric type suffixes
|
||
'string': {
|
||
pattern: /(?:(?:\b(?!\d)(?:\w|\\x[8-9a-fA-F][0-9a-fA-F])+)?(?:"""[\s\S]*?"""(?!")|"(?:\\[\s\S]|""|[^"\\])*")|'(?:\\(?:\d+|x[\da-fA-F]{2}|.)|[^'])')/,
|
||
greedy: true
|
||
},
|
||
// The negative look ahead prevents wrong highlighting of the .. operator
|
||
'number': /\b(?:0[xXoObB][\da-fA-F_]+|\d[\d_]*(?:(?!\.\.)\.[\d_]*)?(?:[eE][+-]?\d[\d_]*)?)(?:'?[iuf]\d*)?/,
|
||
'keyword': /\b(?:addr|as|asm|atomic|bind|block|break|case|cast|concept|const|continue|converter|defer|discard|distinct|do|elif|else|end|enum|except|export|finally|for|from|func|generic|if|import|include|interface|iterator|let|macro|method|mixin|nil|object|out|proc|ptr|raise|ref|return|static|template|try|tuple|type|using|var|when|while|with|without|yield)\b/,
|
||
'function': {
|
||
pattern: /(?:(?!\d)(?:\w|\\x[8-9a-fA-F][0-9a-fA-F])+|`[^`\r\n]+`)\*?(?:\[[^\]]+\])?(?=\s*\()/,
|
||
inside: {
|
||
'operator': /\*$/
|
||
}
|
||
},
|
||
// We don't want to highlight operators inside backticks
|
||
'ignore': {
|
||
pattern: /`[^`\r\n]+`/,
|
||
inside: {
|
||
'punctuation': /`/
|
||
}
|
||
},
|
||
'operator': {
|
||
// Look behind and look ahead prevent wrong highlighting of punctuations [. .] {. .} (. .)
|
||
// but allow the slice operator .. to take precedence over them
|
||
// One can define his own operators in Nim so all combination of operators might be an operator.
|
||
pattern: /(^|[({\[](?=\.\.)|(?![({\[]\.).)(?:(?:[=+\-*\/<>@$~&%|!?^:\\]|\.\.|\.(?![)}\]]))+|\b(?:and|div|of|or|in|is|isnot|mod|not|notin|shl|shr|xor)\b)/m,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /[({\[]\.|\.[)}\]]|[`(){}\[\],:]/
|
||
};
|
||
Prism.languages.nix = {
|
||
'comment': /\/\*[\s\S]*?\*\/|#.*/,
|
||
'string': {
|
||
pattern: /"(?:[^"\\]|\\[\s\S])*"|''(?:(?!'')[\s\S]|''(?:'|\\|\$\{))*''/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': {
|
||
// The lookbehind ensures the ${} is not preceded by \ or ''
|
||
pattern: /(^|(?:^|(?!'').)[^\\])\$\{(?:[^}]|\{[^}]*\})*}/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'antiquotation': {
|
||
pattern: /^\$(?=\{)/,
|
||
alias: 'variable'
|
||
}
|
||
// See rest below
|
||
}
|
||
}
|
||
}
|
||
},
|
||
'url': [
|
||
/\b(?:[a-z]{3,7}:\/\/)[\w\-+%~\/.:#=?&]+/,
|
||
{
|
||
pattern: /([^\/])(?:[\w\-+%~.:#=?&]*(?!\/\/)[\w\-+%~\/.:#=?&])?(?!\/\/)\/[\w\-+%~\/.:#=?&]*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'antiquotation': {
|
||
pattern: /\$(?=\{)/,
|
||
alias: 'variable'
|
||
},
|
||
'number': /\b\d+\b/,
|
||
'keyword': /\b(?:assert|builtins|else|if|in|inherit|let|null|or|then|with)\b/,
|
||
'function': /\b(?:abort|add|all|any|attrNames|attrValues|baseNameOf|compareVersions|concatLists|currentSystem|deepSeq|derivation|dirOf|div|elem(?:At)?|fetch(?:url|Tarball)|filter(?:Source)?|fromJSON|genList|getAttr|getEnv|hasAttr|hashString|head|import|intersectAttrs|is(?:Attrs|Bool|Function|Int|List|Null|String)|length|lessThan|listToAttrs|map|mul|parseDrvName|pathExists|read(?:Dir|File)|removeAttrs|replaceStrings|seq|sort|stringLength|sub(?:string)?|tail|throw|to(?:File|JSON|Path|String|XML)|trace|typeOf)\b|\bfoldl'\B/,
|
||
'boolean': /\b(?:true|false)\b/,
|
||
'operator': /[=!<>]=?|\+\+?|\|\||&&|\/\/|->?|[?@]/,
|
||
'punctuation': /[{}()[\].,:;]/
|
||
};
|
||
|
||
Prism.languages.nix.string.inside.interpolation.inside.rest = Prism.util.clone(Prism.languages.nix);
|
||
/**
|
||
* Original by Jan T. Sott (http://github.com/idleberg)
|
||
*
|
||
* Includes all commands and plug-ins shipped with NSIS 3.0
|
||
*/
|
||
Prism.languages.nsis = {
|
||
'comment': {
|
||
pattern: /(^|[^\\])(\/\*[\s\S]*?\*\/|[#;].*)/,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
pattern: /("|')(\\?.)*?\1/,
|
||
greedy: true
|
||
},
|
||
'keyword': {
|
||
pattern: /(^\s*)(Abort|Add(BrandingImage|Size)|AdvSplash|Allow(RootDirInstall|SkipFiles)|AutoCloseWindow|Banner|BG(Font|Gradient|Image)|BrandingText|BringToFront|Call(InstDLL)?|Caption|ChangeUI|CheckBitmap|ClearErrors|CompletedText|ComponentText|CopyFiles|CRCCheck|Create(Directory|Font|ShortCut)|Delete(INISec|INIStr|RegKey|RegValue)?|Detail(Print|sButtonText)|Dialer|Dir(Text|Var|Verify)|EnableWindow|Enum(RegKey|RegValue)|Exch|Exec(Shell|Wait)?|ExpandEnvStrings|File(BufSize|Close|ErrorText|Open|Read|ReadByte|ReadUTF16LE|ReadWord|WriteUTF16LE|Seek|Write|WriteByte|WriteWord)?|Find(Close|First|Next|Window)|FlushINI|Get(CurInstType|CurrentAddress|DlgItem|DLLVersion(Local)?|ErrorLevel|FileTime(Local)?|FullPathName|Function(Address|End)?|InstDirError|LabelAddress|TempFileName)|Goto|HideWindow|Icon|If(Abort|Errors|FileExists|RebootFlag|Silent)|InitPluginsDir|Install(ButtonText|Colors|Dir(RegKey)?)|InstProgressFlags|Inst(Type(GetText|SetText)?)|Int(CmpU?|Fmt|Op)|IsWindow|Lang(DLL|String)|License(BkColor|Data|ForceSelection|LangString|Text)|LoadLanguageFile|LockWindow|Log(Set|Text)|Manifest(DPIAware|SupportedOS)|Math|MessageBox|MiscButtonText|Name|Nop|ns(Dialogs|Exec)|NSISdl|OutFile|Page(Callbacks)?|Pop|Push|Quit|Read(EnvStr|INIStr|RegDWORD|RegStr)|Reboot|RegDLL|Rename|RequestExecutionLevel|ReserveFile|Return|RMDir|SearchPath|Section(End|GetFlags|GetInstTypes|GetSize|GetText|Group|In|SetFlags|SetInstTypes|SetSize|SetText)?|SendMessage|Set(AutoClose|BrandingImage|Compress|Compressor(DictSize)?|CtlColors|CurInstType|DatablockOptimize|DateSave|Details(Print|View)|ErrorLevel|Errors|FileAttributes|Font|OutPath|Overwrite|RebootFlag|RegView|ShellVarContext|Silent)|Show(InstDetails|UninstDetails|Window)|Silent(Install|UnInstall)|Sleep|SpaceTexts|Splash|StartMenu|Str(CmpS?|Cpy|Len)|SubCaption|System|Unicode|Uninstall(ButtonText|Caption|Icon|SubCaption|Text)|UninstPage|UnRegDLL|UserInfo|Var|VI(AddVersionKey|FileVersion|ProductVersion)|VPatch|WindowIcon|Write(INIStr|RegBin|RegDWORD|RegExpandStr|RegStr|Uninstaller)|XPStyle)\b/m,
|
||
lookbehind: true
|
||
},
|
||
'property': /\b(admin|all|auto|both|colored|false|force|hide|highest|lastused|leave|listonly|none|normal|notset|off|on|open|print|show|silent|silentlog|smooth|textonly|true|user|ARCHIVE|FILE_(ATTRIBUTE_ARCHIVE|ATTRIBUTE_NORMAL|ATTRIBUTE_OFFLINE|ATTRIBUTE_READONLY|ATTRIBUTE_SYSTEM|ATTRIBUTE_TEMPORARY)|HK(CR|CU|DD|LM|PD|U)|HKEY_(CLASSES_ROOT|CURRENT_CONFIG|CURRENT_USER|DYN_DATA|LOCAL_MACHINE|PERFORMANCE_DATA|USERS)|ID(ABORT|CANCEL|IGNORE|NO|OK|RETRY|YES)|MB_(ABORTRETRYIGNORE|DEFBUTTON1|DEFBUTTON2|DEFBUTTON3|DEFBUTTON4|ICONEXCLAMATION|ICONINFORMATION|ICONQUESTION|ICONSTOP|OK|OKCANCEL|RETRYCANCEL|RIGHT|RTLREADING|SETFOREGROUND|TOPMOST|USERICON|YESNO)|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\b/,
|
||
'constant': /\${[\w\.:\^-]+}|\$\([\w\.:\^-]+\)/i,
|
||
'variable': /\$\w+/i,
|
||
'number': /\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/,
|
||
'operator': /--?|\+\+?|<=?|>=?|==?=?|&&?|\|?\||[?*\/~^%]/,
|
||
'punctuation': /[{}[\];(),.:]/,
|
||
'important': {
|
||
pattern: /(^\s*)!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\b/mi,
|
||
lookbehind: true
|
||
}
|
||
};
|
||
|
||
Prism.languages.objectivec = Prism.languages.extend('c', {
|
||
'keyword': /\b(asm|typeof|inline|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|union|unsigned|void|volatile|while|in|self|super)\b|(@interface|@end|@implementation|@protocol|@class|@public|@protected|@private|@property|@try|@catch|@finally|@throw|@synthesize|@dynamic|@selector)\b/,
|
||
'string': /("|')(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|@"(\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,
|
||
'operator': /-[->]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|\|?|[~^%?*\/@]/
|
||
});
|
||
|
||
Prism.languages.ocaml = {
|
||
'comment': /\(\*[\s\S]*?\*\)/,
|
||
'string': [
|
||
{
|
||
pattern: /"(?:\\.|[^\\\r\n"])*"/,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /(['`])(?:\\(?:\d+|x[\da-f]+|.)|(?!\1)[^\\\r\n])\1/i,
|
||
greedy: true
|
||
}
|
||
],
|
||
'number': /\b-?(?:0x[\da-f][\da-f_]+|(?:0[bo])?\d[\d_]*\.?[\d_]*(?:e[+-]?[\d_]+)?)/i,
|
||
'type': {
|
||
pattern: /\B['`][a-z\d_]*/i,
|
||
alias: 'variable'
|
||
},
|
||
'directive': {
|
||
pattern: /\B#[a-z\d_]+/i,
|
||
alias: 'function'
|
||
},
|
||
'keyword': /\b(?:as|assert|begin|class|constraint|do|done|downto|else|end|exception|external|for|fun|function|functor|if|in|include|inherit|initializer|lazy|let|match|method|module|mutable|new|object|of|open|prefix|private|rec|then|sig|struct|to|try|type|val|value|virtual|where|while|with)\b/,
|
||
'boolean': /\b(?:false|true)\b/,
|
||
// Custom operators are allowed
|
||
'operator': /:=|[=<>@^|&+\-*\/$%!?~][!$%&\*+\-.\/:<=>?@^|~]*|\b(?:and|asr|land|lor|lxor|lsl|lsr|mod|nor|or)\b/,
|
||
'punctuation': /[(){}\[\]|_.,:;]/
|
||
};
|
||
Prism.languages.oz = {
|
||
'comment': /\/\*[\s\S]*?\*\/|%.*/,
|
||
'string': {
|
||
pattern: /"(?:[^"\\]|\\[\s\S])*"/,
|
||
greedy: true
|
||
},
|
||
'atom': {
|
||
pattern: /'(?:[^'\\]|\\.)*'/,
|
||
greedy: true,
|
||
alias: 'builtin'
|
||
},
|
||
'keyword': /[$_]|\[\]|\b(?:at|attr|case|catch|choice|class|cond|declare|define|dis|else(?:case|if)?|end|export|fail|false|feat|finally|from|fun|functor|if|import|in|local|lock|meth|nil|not|of|or|prepare|proc|prop|raise|require|self|skip|then|thread|true|try|unit)\b/,
|
||
'function': [
|
||
/[a-z][A-Za-z\d]*(?=\()/,
|
||
{
|
||
pattern: /(\{)[A-Z][A-Za-z\d]*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'number': /\b(?:0[bx][\da-f]+|\d+\.?\d*(?:e~?\d+)?\b)|&(?:[^\\]|\\(?:\d{3}|.))/i,
|
||
'variable': /\b[A-Z][A-Za-z\d]*|`(?:[^`\\]|\\.)+`/,
|
||
'attr-name': /\w+(?=:)/,
|
||
'operator': /:(?:=|::?)|<[-:=]?|=(?:=|<?:?)|>=?:?|\\=:?|!!?|[|#+\-*\/,~^@]|\b(?:andthen|div|mod|orelse)\b/,
|
||
'punctuation': /[\[\](){}.:;?]/
|
||
};
|
||
Prism.languages.parigp = {
|
||
'comment': /\/\*[\s\S]*?\*\/|\\\\.*/,
|
||
'string': {
|
||
pattern: /"(?:[^"\\]|\\.)*"/,
|
||
greedy: true
|
||
},
|
||
// PARI/GP does not care about white spaces at all
|
||
// so let's process the keywords to build an appropriate regexp
|
||
// (e.g. "b *r *e *a *k", etc.)
|
||
'keyword': (function () {
|
||
var keywords = [
|
||
'breakpoint', 'break', 'dbg_down', 'dbg_err', 'dbg_up', 'dbg_x',
|
||
'forcomposite', 'fordiv', 'forell', 'forpart', 'forprime',
|
||
'forstep', 'forsubgroup', 'forvec', 'for', 'iferr', 'if',
|
||
'local', 'my', 'next', 'return', 'until', 'while'
|
||
];
|
||
keywords = keywords.map(function (keyword) {
|
||
return keyword.split('').join(' *');
|
||
}).join('|');
|
||
return RegExp('\\b(?:' + keywords + ')\\b');
|
||
}()),
|
||
'function': /\w[\w ]*?(?= *\()/,
|
||
'number': {
|
||
// The lookbehind and the negative lookahead prevent from breaking the .. operator
|
||
pattern: /((?:\. *\. *)?)(?:\d(?: *\d)*(?: *(?!\. *\.)\.(?: *\d)*)?|\. *\d(?: *\d)*)(?: *e *[+-]? *\d(?: *\d)*)?/i,
|
||
lookbehind: true
|
||
},
|
||
'operator': /\. *\.|[*\/!](?: *=)?|%(?: *=|(?: *#)?(?: *')*)?|\+(?: *[+=])?|-(?: *[-=>])?|<(?:(?: *<)?(?: *=)?| *>)?|>(?: *>)?(?: *=)?|=(?: *=){0,2}|\\(?: *\/)?(?: *=)?|&(?: *&)?|\| *\||['#~^]/,
|
||
'punctuation': /[\[\]{}().,:;|]/
|
||
};
|
||
Prism.languages.parser = Prism.languages.extend('markup', {
|
||
'keyword': {
|
||
pattern: /(^|[^^])(?:\^(?:case|eval|for|if|switch|throw)\b|@(?:BASE|CLASS|GET(?:_DEFAULT)?|OPTIONS|SET_DEFAULT|USE)\b)/,
|
||
lookbehind: true
|
||
},
|
||
'variable': {
|
||
pattern: /(^|[^^])\B\$(?:\w+|(?=[.\{]))(?:(?:\.|::?)\w+)*(?:\.|::?)?/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'punctuation': /\.|:+/
|
||
}
|
||
},
|
||
'function': {
|
||
pattern: /(^|[^^])\B[@^]\w+(?:(?:\.|::?)\w+)*(?:\.|::?)?/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'keyword': {
|
||
pattern: /(^@)(?:GET_|SET_)/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /\.|:+/
|
||
}
|
||
},
|
||
'escape': {
|
||
pattern: /\^(?:[$^;@()\[\]{}"':]|#[a-f\d]*)/i,
|
||
alias: 'builtin'
|
||
},
|
||
'punctuation': /[\[\](){};]/
|
||
});
|
||
Prism.languages.insertBefore('parser', 'keyword', {
|
||
'parser-comment': {
|
||
pattern: /(\s)#.*/,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
},
|
||
'expression': {
|
||
// Allow for 3 levels of depth
|
||
pattern: /(^|[^^])\((?:[^()]|\((?:[^()]|\((?:[^()])*\))*\))*\)/,
|
||
greedy: true,
|
||
lookbehind: true,
|
||
inside: {
|
||
'string': {
|
||
pattern: /(^|[^^])(["'])(?:(?!\2)[^^]|\^[\s\S])*\2/,
|
||
lookbehind: true
|
||
},
|
||
'keyword': Prism.languages.parser.keyword,
|
||
'variable': Prism.languages.parser.variable,
|
||
'function': Prism.languages.parser.function,
|
||
'boolean': /\b(?:true|false)\b/,
|
||
'number': /\b(?:0x[a-f\d]+|\d+\.?\d*(?:e[+-]?\d+)?)\b/i,
|
||
'escape': Prism.languages.parser.escape,
|
||
'operator': /[~+*\/\\%]|!(?:\|\|?|=)?|&&?|\|\|?|==|<[<=]?|>[>=]?|-[fd]?|\b(?:def|eq|ge|gt|in|is|le|lt|ne)\b/,
|
||
'punctuation': Prism.languages.parser.punctuation
|
||
}
|
||
}
|
||
});
|
||
Prism.languages.insertBefore('inside', 'punctuation', {
|
||
'expression': Prism.languages.parser.expression,
|
||
'keyword': Prism.languages.parser.keyword,
|
||
'variable': Prism.languages.parser.variable,
|
||
'function': Prism.languages.parser.function,
|
||
'escape': Prism.languages.parser.escape,
|
||
'parser-punctuation': {
|
||
pattern: Prism.languages.parser.punctuation,
|
||
alias: 'punctuation'
|
||
}
|
||
}, Prism.languages.parser['tag'].inside['attr-value']);
|
||
// Based on Free Pascal
|
||
|
||
/* TODO
|
||
Support inline asm ?
|
||
*/
|
||
|
||
Prism.languages.pascal = {
|
||
'comment': [
|
||
/\(\*[\s\S]+?\*\)/,
|
||
/\{[\s\S]+?\}/,
|
||
/\/\/.*/
|
||
],
|
||
'string': {
|
||
pattern: /(?:'(?:''|[^'\r\n])*'|#[&$%]?[a-f\d]+)+|\^[a-z]/i,
|
||
greedy: true
|
||
},
|
||
'keyword': [
|
||
{
|
||
// Turbo Pascal
|
||
pattern: /(^|[^&])\b(?:absolute|array|asm|begin|case|const|constructor|destructor|do|downto|else|end|file|for|function|goto|if|implementation|inherited|inline|interface|label|nil|object|of|operator|packed|procedure|program|record|reintroduce|repeat|self|set|string|then|to|type|unit|until|uses|var|while|with)\b/i,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
// Free Pascal
|
||
pattern: /(^|[^&])\b(?:dispose|exit|false|new|true)\b/i,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
// Object Pascal
|
||
pattern: /(^|[^&])\b(?:class|dispinterface|except|exports|finalization|finally|initialization|inline|library|on|out|packed|property|raise|resourcestring|threadvar|try)\b/i,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
// Modifiers
|
||
pattern: /(^|[^&])\b(?:absolute|abstract|alias|assembler|bitpacked|break|cdecl|continue|cppdecl|cvar|default|deprecated|dynamic|enumerator|experimental|export|external|far|far16|forward|generic|helper|implements|index|interrupt|iochecks|local|message|name|near|nodefault|noreturn|nostackframe|oldfpccall|otherwise|overload|override|pascal|platform|private|protected|public|published|read|register|reintroduce|result|safecall|saveregisters|softfloat|specialize|static|stdcall|stored|strict|unaligned|unimplemented|varargs|virtual|write)\b/i,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'number': [
|
||
// Hexadecimal, octal and binary
|
||
/[+-]?(?:[&%]\d+|\$[a-f\d]+)/i,
|
||
// Decimal
|
||
/([+-]|\b)\d+(?:\.\d+)?(?:e[+-]?\d+)?/i
|
||
],
|
||
'operator': [
|
||
/\.\.|\*\*|:=|<[<=>]?|>[>=]?|[+\-*\/]=?|[@^=]/i,
|
||
{
|
||
pattern: /(^|[^&])\b(?:and|as|div|exclude|in|include|is|mod|not|or|shl|shr|xor)\b/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'punctuation': /\(\.|\.\)|[()\[\]:;,.]/
|
||
};
|
||
Prism.languages.perl = {
|
||
'comment': [
|
||
{
|
||
// POD
|
||
pattern: /(^\s*)=\w+[\s\S]*?=cut.*/m,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(^|[^\\$])#.*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
// TODO Could be nice to handle Heredoc too.
|
||
'string': [
|
||
// q/.../
|
||
{
|
||
pattern: /\b(?:q|qq|qx|qw)\s*([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1/,
|
||
greedy: true
|
||
},
|
||
|
||
// q a...a
|
||
{
|
||
pattern: /\b(?:q|qq|qx|qw)\s+([a-zA-Z0-9])(?:[^\\]|\\[\s\S])*?\1/,
|
||
greedy: true
|
||
},
|
||
|
||
// q(...)
|
||
{
|
||
pattern: /\b(?:q|qq|qx|qw)\s*\((?:[^()\\]|\\[\s\S])*\)/,
|
||
greedy: true
|
||
},
|
||
|
||
// q{...}
|
||
{
|
||
pattern: /\b(?:q|qq|qx|qw)\s*\{(?:[^{}\\]|\\[\s\S])*\}/,
|
||
greedy: true
|
||
},
|
||
|
||
// q[...]
|
||
{
|
||
pattern: /\b(?:q|qq|qx|qw)\s*\[(?:[^[\]\\]|\\[\s\S])*\]/,
|
||
greedy: true
|
||
},
|
||
|
||
// q<...>
|
||
{
|
||
pattern: /\b(?:q|qq|qx|qw)\s*<(?:[^<>\\]|\\[\s\S])*>/,
|
||
greedy: true
|
||
},
|
||
|
||
// "...", `...`
|
||
{
|
||
pattern: /("|`)(?:[^\\]|\\[\s\S])*?\1/,
|
||
greedy: true
|
||
},
|
||
|
||
// '...'
|
||
// FIXME Multi-line single-quoted strings are not supported as they would break variables containing '
|
||
{
|
||
pattern: /'(?:[^'\\\r\n]|\\.)*'/,
|
||
greedy: true
|
||
}
|
||
],
|
||
'regex': [
|
||
// m/.../
|
||
{
|
||
pattern: /\b(?:m|qr)\s*([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\1[msixpodualngc]*/,
|
||
greedy: true
|
||
},
|
||
|
||
// m a...a
|
||
{
|
||
pattern: /\b(?:m|qr)\s+([a-zA-Z0-9])(?:[^\\]|\\.)*?\1[msixpodualngc]*/,
|
||
greedy: true
|
||
},
|
||
|
||
// m(...)
|
||
{
|
||
pattern: /\b(?:m|qr)\s*\((?:[^()\\]|\\[\s\S])*\)[msixpodualngc]*/,
|
||
greedy: true
|
||
},
|
||
|
||
// m{...}
|
||
{
|
||
pattern: /\b(?:m|qr)\s*\{(?:[^{}\\]|\\[\s\S])*\}[msixpodualngc]*/,
|
||
greedy: true
|
||
},
|
||
|
||
// m[...]
|
||
{
|
||
pattern: /\b(?:m|qr)\s*\[(?:[^[\]\\]|\\[\s\S])*\][msixpodualngc]*/,
|
||
greedy: true
|
||
},
|
||
|
||
// m<...>
|
||
{
|
||
pattern: /\b(?:m|qr)\s*<(?:[^<>\\]|\\[\s\S])*>[msixpodualngc]*/,
|
||
greedy: true
|
||
},
|
||
|
||
// The lookbehinds prevent -s from breaking
|
||
// FIXME We don't handle change of separator like s(...)[...]
|
||
// s/.../.../
|
||
{
|
||
pattern: /(^|[^-]\b)(?:s|tr|y)\s*([^a-zA-Z0-9\s\{\(\[<])(?:[^\\]|\\[\s\S])*?\2(?:[^\\]|\\[\s\S])*?\2[msixpodualngcer]*/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
|
||
// s a...a...a
|
||
{
|
||
pattern: /(^|[^-]\b)(?:s|tr|y)\s+([a-zA-Z0-9])(?:[^\\]|\\[\s\S])*?\2(?:[^\\]|\\[\s\S])*?\2[msixpodualngcer]*/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
|
||
// s(...)(...)
|
||
{
|
||
pattern: /(^|[^-]\b)(?:s|tr|y)\s*\((?:[^()\\]|\\[\s\S])*\)\s*\((?:[^()\\]|\\[\s\S])*\)[msixpodualngcer]*/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
|
||
// s{...}{...}
|
||
{
|
||
pattern: /(^|[^-]\b)(?:s|tr|y)\s*\{(?:[^{}\\]|\\[\s\S])*\}\s*\{(?:[^{}\\]|\\[\s\S])*\}[msixpodualngcer]*/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
|
||
// s[...][...]
|
||
{
|
||
pattern: /(^|[^-]\b)(?:s|tr|y)\s*\[(?:[^[\]\\]|\\[\s\S])*\]\s*\[(?:[^[\]\\]|\\[\s\S])*\][msixpodualngcer]*/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
|
||
// s<...><...>
|
||
{
|
||
pattern: /(^|[^-]\b)(?:s|tr|y)\s*<(?:[^<>\\]|\\[\s\S])*>\s*<(?:[^<>\\]|\\[\s\S])*>[msixpodualngcer]*/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
|
||
// /.../
|
||
// The look-ahead tries to prevent two divisions on
|
||
// the same line from being highlighted as regex.
|
||
// This does not support multi-line regex.
|
||
{
|
||
pattern: /\/(?:[^\/\\\r\n]|\\.)*\/[msixpodualngc]*(?=\s*(?:$|[\r\n,.;})&|\-+*~<>!?^]|(lt|gt|le|ge|eq|ne|cmp|not|and|or|xor|x)\b))/,
|
||
greedy: true
|
||
}
|
||
],
|
||
|
||
// FIXME Not sure about the handling of ::, ', and #
|
||
'variable': [
|
||
// ${^POSTMATCH}
|
||
/[&*$@%]\{\^[A-Z]+\}/,
|
||
// $^V
|
||
/[&*$@%]\^[A-Z_]/,
|
||
// ${...}
|
||
/[&*$@%]#?(?=\{)/,
|
||
// $foo
|
||
/[&*$@%]#?((::)*'?(?!\d)[\w$]+)+(::)*/i,
|
||
// $1
|
||
/[&*$@%]\d+/,
|
||
// $_, @_, %!
|
||
// The negative lookahead prevents from breaking the %= operator
|
||
/(?!%=)[$@%][!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~]/
|
||
],
|
||
'filehandle': {
|
||
// <>, <FOO>, _
|
||
pattern: /<(?![<=])\S*>|\b_\b/,
|
||
alias: 'symbol'
|
||
},
|
||
'vstring': {
|
||
// v1.2, 1.2.3
|
||
pattern: /v\d+(\.\d+)*|\d+(\.\d+){2,}/,
|
||
alias: 'string'
|
||
},
|
||
'function': {
|
||
pattern: /sub [a-z0-9_]+/i,
|
||
inside: {
|
||
keyword: /sub/
|
||
}
|
||
},
|
||
'keyword': /\b(any|break|continue|default|delete|die|do|else|elsif|eval|for|foreach|given|goto|if|last|local|my|next|our|package|print|redo|require|say|state|sub|switch|undef|unless|until|use|when|while)\b/,
|
||
'number': /\b-?(0x[\dA-Fa-f](_?[\dA-Fa-f])*|0b[01](_?[01])*|(\d(_?\d)*)?\.?\d(_?\d)*([Ee][+-]?\d+)?)\b/,
|
||
'operator': /-[rwxoRWXOezsfdlpSbctugkTBMAC]\b|\+[+=]?|-[-=>]?|\*\*?=?|\/\/?=?|=[=~>]?|~[~=]?|\|\|?=?|&&?=?|<(?:=>?|<=?)?|>>?=?|![~=]?|[%^]=?|\.(?:=|\.\.?)?|[\\?]|\bx(?:=|\b)|\b(lt|gt|le|ge|eq|ne|cmp|not|and|or|xor)\b/,
|
||
'punctuation': /[{}[\];(),:]/
|
||
};
|
||
|
||
/**
|
||
* Original by Aaron Harun: http://aahacreative.com/2012/07/31/php-syntax-highlighting-prism/
|
||
* Modified by Miles Johnson: http://milesj.me
|
||
*
|
||
* Supports the following:
|
||
* - Extends clike syntax
|
||
* - Support for PHP 5.3+ (namespaces, traits, generators, etc)
|
||
* - Smarter constant and function matching
|
||
*
|
||
* Adds the following new token classes:
|
||
* constant, delimiter, variable, function, package
|
||
*/
|
||
|
||
Prism.languages.php = Prism.languages.extend('clike', {
|
||
'keyword': /\b(and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,
|
||
'constant': /\b[A-Z0-9_]{2,}\b/,
|
||
'comment': {
|
||
pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
// Shell-like comments are matched after strings, because they are less
|
||
// common than strings containing hashes...
|
||
Prism.languages.insertBefore('php', 'class-name', {
|
||
'shell-comment': {
|
||
pattern: /(^|[^\\])#.*/,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('php', 'keyword', {
|
||
'delimiter': {
|
||
pattern: /\?>|<\?(?:php|=)?/i,
|
||
alias: 'important'
|
||
},
|
||
'variable': /\$\w+\b/i,
|
||
'package': {
|
||
pattern: /(\\|namespace\s+|use\s+)[\w\\]+/,
|
||
lookbehind: true,
|
||
inside: {
|
||
punctuation: /\\/
|
||
}
|
||
}
|
||
});
|
||
|
||
// Must be defined after the function pattern
|
||
Prism.languages.insertBefore('php', 'operator', {
|
||
'property': {
|
||
pattern: /(->)[\w]+/,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
// Add HTML support if the markup language exists
|
||
if (Prism.languages.markup) {
|
||
|
||
// Tokenize all inline PHP blocks that are wrapped in <?php ?>
|
||
// This allows for easy PHP + markup highlighting
|
||
Prism.hooks.add('before-highlight', function(env) {
|
||
if (env.language !== 'php' || !/(?:<\?php|<\?)/ig.test(env.code)) {
|
||
return;
|
||
}
|
||
|
||
env.tokenStack = [];
|
||
|
||
env.backupCode = env.code;
|
||
env.code = env.code.replace(/(?:<\?php|<\?)[\s\S]*?(?:\?>|$)/ig, function(match) {
|
||
var i = env.tokenStack.length;
|
||
// Check for existing strings
|
||
while (env.backupCode.indexOf('___PHP' + i + '___') !== -1)
|
||
++i;
|
||
|
||
// Create a sparse array
|
||
env.tokenStack[i] = match;
|
||
|
||
return '___PHP' + i + '___';
|
||
});
|
||
|
||
// Switch the grammar to markup
|
||
env.grammar = Prism.languages.markup;
|
||
});
|
||
|
||
// Restore env.code for other plugins (e.g. line-numbers)
|
||
Prism.hooks.add('before-insert', function(env) {
|
||
if (env.language === 'php' && env.backupCode) {
|
||
env.code = env.backupCode;
|
||
delete env.backupCode;
|
||
}
|
||
});
|
||
|
||
// Re-insert the tokens after highlighting
|
||
Prism.hooks.add('after-highlight', function(env) {
|
||
if (env.language !== 'php' || !env.tokenStack) {
|
||
return;
|
||
}
|
||
|
||
// Switch the grammar back
|
||
env.grammar = Prism.languages.php;
|
||
|
||
for (var i = 0, keys = Object.keys(env.tokenStack); i < keys.length; ++i) {
|
||
var k = keys[i];
|
||
var t = env.tokenStack[k];
|
||
|
||
// The replace prevents $$, $&, $`, $', $n, $nn from being interpreted as special patterns
|
||
env.highlightedCode = env.highlightedCode.replace('___PHP' + k + '___',
|
||
"<span class=\"token php language-php\">" +
|
||
Prism.highlight(t, env.grammar, 'php').replace(/\$/g, '$$$$') +
|
||
"</span>");
|
||
}
|
||
|
||
env.element.innerHTML = env.highlightedCode;
|
||
});
|
||
}
|
||
;
|
||
Prism.languages.insertBefore('php', 'variable', {
|
||
'this': /\$this\b/,
|
||
'global': /\$(?:_(?:SERVER|GET|POST|FILES|REQUEST|SESSION|ENV|COOKIE)|GLOBALS|HTTP_RAW_POST_DATA|argc|argv|php_errormsg|http_response_header)/,
|
||
'scope': {
|
||
pattern: /\b[\w\\]+::/,
|
||
inside: {
|
||
keyword: /(static|self|parent)/,
|
||
punctuation: /(::|\\)/
|
||
}
|
||
}
|
||
});
|
||
Prism.languages.powershell = {
|
||
'comment': [
|
||
{
|
||
pattern: /(^|[^`])<#[\s\S]*?#>/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(^|[^`])#.*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'string': [
|
||
{
|
||
pattern: /"(`?[\s\S])*?"/,
|
||
greedy: true,
|
||
inside: {
|
||
'function': {
|
||
pattern: /[^`]\$\(.*?\)/,
|
||
// Populated at end of file
|
||
inside: {}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
pattern: /'([^']|'')*'/,
|
||
greedy: true
|
||
}
|
||
],
|
||
// Matches name spaces as well as casts, attribute decorators. Force starting with letter to avoid matching array indices
|
||
'namespace': /\[[a-z][\s\S]*?\]/i,
|
||
'boolean': /\$(true|false)\b/i,
|
||
'variable': /\$\w+\b/i,
|
||
// Cmdlets and aliases. Aliases should come last, otherwise "write" gets preferred over "write-host" for example
|
||
// Get-Command | ?{ $_.ModuleName -match "Microsoft.PowerShell.(Util|Core|Management)" }
|
||
// Get-Alias | ?{ $_.ReferencedCommand.Module.Name -match "Microsoft.PowerShell.(Util|Core|Management)" }
|
||
'function': [
|
||
/\b(Add-(Computer|Content|History|Member|PSSnapin|Type)|Checkpoint-Computer|Clear-(Content|EventLog|History|Item|ItemProperty|Variable)|Compare-Object|Complete-Transaction|Connect-PSSession|ConvertFrom-(Csv|Json|StringData)|Convert-Path|ConvertTo-(Csv|Html|Json|Xml)|Copy-(Item|ItemProperty)|Debug-Process|Disable-(ComputerRestore|PSBreakpoint|PSRemoting|PSSessionConfiguration)|Disconnect-PSSession|Enable-(ComputerRestore|PSBreakpoint|PSRemoting|PSSessionConfiguration)|Enter-PSSession|Exit-PSSession|Export-(Alias|Clixml|Console|Csv|FormatData|ModuleMember|PSSession)|ForEach-Object|Format-(Custom|List|Table|Wide)|Get-(Alias|ChildItem|Command|ComputerRestorePoint|Content|ControlPanelItem|Culture|Date|Event|EventLog|EventSubscriber|FormatData|Help|History|Host|HotFix|Item|ItemProperty|Job|Location|Member|Module|Process|PSBreakpoint|PSCallStack|PSDrive|PSProvider|PSSession|PSSessionConfiguration|PSSnapin|Random|Service|TraceSource|Transaction|TypeData|UICulture|Unique|Variable|WmiObject)|Group-Object|Import-(Alias|Clixml|Csv|LocalizedData|Module|PSSession)|Invoke-(Command|Expression|History|Item|RestMethod|WebRequest|WmiMethod)|Join-Path|Limit-EventLog|Measure-(Command|Object)|Move-(Item|ItemProperty)|New-(Alias|Event|EventLog|Item|ItemProperty|Module|ModuleManifest|Object|PSDrive|PSSession|PSSessionConfigurationFile|PSSessionOption|PSTransportOption|Service|TimeSpan|Variable|WebServiceProxy)|Out-(Default|File|GridView|Host|Null|Printer|String)|Pop-Location|Push-Location|Read-Host|Receive-(Job|PSSession)|Register-(EngineEvent|ObjectEvent|PSSessionConfiguration|WmiEvent)|Remove-(Computer|Event|EventLog|Item|ItemProperty|Job|Module|PSBreakpoint|PSDrive|PSSession|PSSnapin|TypeData|Variable|WmiObject)|Rename-(Computer|Item|ItemProperty)|Reset-ComputerMachinePassword|Resolve-Path|Restart-(Computer|Service)|Restore-Computer|Resume-(Job|Service)|Save-Help|Select-(Object|String|Xml)|Send-MailMessage|Set-(Alias|Content|Date|Item|ItemProperty|Location|PSBreakpoint|PSDebug|PSSessionConfiguration|Service|StrictMode|TraceSource|Variable|WmiInstance)|Show-(Command|ControlPanelItem|EventLog)|Sort-Object|Split-Path|Start-(Job|Process|Service|Sleep|Transaction)|Stop-(Computer|Job|Process|Service)|Suspend-(Job|Service)|Tee-Object|Test-(ComputerSecureChannel|Connection|ModuleManifest|Path|PSSessionConfigurationFile)|Trace-Command|Unblock-File|Undo-Transaction|Unregister-(Event|PSSessionConfiguration)|Update-(FormatData|Help|List|TypeData)|Use-Transaction|Wait-(Event|Job|Process)|Where-Object|Write-(Debug|Error|EventLog|Host|Output|Progress|Verbose|Warning))\b/i,
|
||
/\b(ac|cat|chdir|clc|cli|clp|clv|compare|copy|cp|cpi|cpp|cvpa|dbp|del|diff|dir|ebp|echo|epal|epcsv|epsn|erase|fc|fl|ft|fw|gal|gbp|gc|gci|gcs|gdr|gi|gl|gm|gp|gps|group|gsv|gu|gv|gwmi|iex|ii|ipal|ipcsv|ipsn|irm|iwmi|iwr|kill|lp|ls|measure|mi|mount|move|mp|mv|nal|ndr|ni|nv|ogv|popd|ps|pushd|pwd|rbp|rd|rdr|ren|ri|rm|rmdir|rni|rnp|rp|rv|rvpa|rwmi|sal|saps|sasv|sbp|sc|select|set|shcm|si|sl|sleep|sls|sort|sp|spps|spsv|start|sv|swmi|tee|trcm|type|write)\b/i
|
||
],
|
||
// per http://technet.microsoft.com/en-us/library/hh847744.aspx
|
||
'keyword': /\b(Begin|Break|Catch|Class|Continue|Data|Define|Do|DynamicParam|Else|ElseIf|End|Exit|Filter|Finally|For|ForEach|From|Function|If|InlineScript|Parallel|Param|Process|Return|Sequence|Switch|Throw|Trap|Try|Until|Using|Var|While|Workflow)\b/i,
|
||
'operator': {
|
||
pattern: /(\W?)(!|-(eq|ne|gt|ge|lt|le|sh[lr]|not|b?(and|x?or)|(Not)?(Like|Match|Contains|In)|Replace|Join|is(Not)?|as)\b|-[-=]?|\+[+=]?|[*\/%]=?)/i,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /[|{}[\];(),.]/
|
||
};
|
||
|
||
// Variable interpolation inside strings, and nested expressions
|
||
Prism.languages.powershell.string[0].inside.boolean = Prism.languages.powershell.boolean;
|
||
Prism.languages.powershell.string[0].inside.variable = Prism.languages.powershell.variable;
|
||
Prism.languages.powershell.string[0].inside.function.inside = Prism.util.clone(Prism.languages.powershell);
|
||
|
||
Prism.languages.processing = Prism.languages.extend('clike', {
|
||
'keyword': /\b(?:break|catch|case|class|continue|default|else|extends|final|for|if|implements|import|new|null|private|public|return|static|super|switch|this|try|void|while)\b/,
|
||
'operator': /<[<=]?|>[>=]?|&&?|\|\|?|[%?]|[!=+\-*\/]=?/
|
||
});
|
||
Prism.languages.insertBefore('processing', 'number', {
|
||
// Special case: XML is a type
|
||
'constant': /\b(?!XML\b)[A-Z][A-Z\d_]+\b/,
|
||
'type': {
|
||
pattern: /\b(?:boolean|byte|char|color|double|float|int|XML|[A-Z][A-Za-z\d_]*)\b/,
|
||
alias: 'variable'
|
||
}
|
||
});
|
||
|
||
// Spaces are allowed between function name and parenthesis
|
||
Prism.languages.processing['function'].pattern = /[a-z0-9_]+(?=\s*\()/i;
|
||
|
||
// Class-names is not styled by default
|
||
Prism.languages.processing['class-name'].alias = 'variable';
|
||
Prism.languages.prolog = {
|
||
// Syntax depends on the implementation
|
||
'comment': [
|
||
/%.+/,
|
||
/\/\*[\s\S]*?\*\//
|
||
],
|
||
// Depending on the implementation, strings may allow escaped newlines and quote-escape
|
||
'string': {
|
||
pattern: /(["'])(?:\1\1|\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||
greedy: true
|
||
},
|
||
'builtin': /\b(?:fx|fy|xf[xy]?|yfx?)\b/,
|
||
'variable': /\b[A-Z_]\w*/,
|
||
// FIXME: Should we list all null-ary predicates (not followed by a parenthesis) like halt, trace, etc.?
|
||
'function': /\b[a-z]\w*(?:(?=\()|\/\d+)/,
|
||
'number': /\b\d+\.?\d*/,
|
||
// Custom operators are allowed
|
||
'operator': /[:\\=><\-?*@\/;+^|!$.]+|\b(?:is|mod|not|xor)\b/,
|
||
'punctuation': /[(){}\[\],]/
|
||
};
|
||
Prism.languages.properties = {
|
||
'comment': /^[ \t]*[#!].*$/m,
|
||
'attr-value': {
|
||
pattern: /(^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?: *[=:] *| ))(?:\\(?:\r\n|[\s\S])|.)+/m,
|
||
lookbehind: true
|
||
},
|
||
'attr-name': /^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?= *[ =:]| )/m,
|
||
'punctuation': /[=:]/
|
||
};
|
||
Prism.languages.protobuf = Prism.languages.extend('clike', {
|
||
keyword: /\b(package|import|message|enum)\b/,
|
||
builtin: /\b(required|repeated|optional|reserved)\b/,
|
||
primitive: {
|
||
pattern: /\b(double|float|int32|int64|uint32|uint64|sint32|sint64|fixed32|fixed64|sfixed32|sfixed64|bool|string|bytes)\b/,
|
||
alias: 'symbol'
|
||
}
|
||
});
|
||
|
||
(function (Prism) {
|
||
Prism.languages.puppet = {
|
||
'heredoc': [
|
||
// Matches the content of a quoted heredoc string (subject to interpolation)
|
||
{
|
||
pattern: /(@\("([^"\r\n\/):]+)"(?:\/[nrts$uL]*)?\).*(?:\r?\n|\r))(?:.*(?:\r?\n|\r))*?[ \t]*\|?[ \t]*-?[ \t]*\2/,
|
||
lookbehind: true,
|
||
alias: 'string',
|
||
inside: {
|
||
// Matches the end tag
|
||
'punctuation': /(?=\S).*\S(?= *$)/
|
||
// See interpolation below
|
||
}
|
||
},
|
||
// Matches the content of an unquoted heredoc string (no interpolation)
|
||
{
|
||
pattern: /(@\(([^"\r\n\/):]+)(?:\/[nrts$uL]*)?\).*(?:\r?\n|\r))(?:.*(?:\r?\n|\r))*?[ \t]*\|?[ \t]*-?[ \t]*\2/,
|
||
lookbehind: true,
|
||
alias: 'string',
|
||
inside: {
|
||
// Matches the end tag
|
||
'punctuation': /(?=\S).*\S(?= *$)/
|
||
}
|
||
},
|
||
// Matches the start tag of heredoc strings
|
||
{
|
||
pattern: /@\("?(?:[^"\r\n\/):]+)"?(?:\/[nrts$uL]*)?\)/,
|
||
alias: 'string',
|
||
inside: {
|
||
'punctuation': {
|
||
pattern: /(\().+?(?=\))/,
|
||
lookbehind: true
|
||
}
|
||
}
|
||
}
|
||
],
|
||
'multiline-comment': {
|
||
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
},
|
||
'regex': {
|
||
// Must be prefixed with the keyword "node" or a non-word char
|
||
pattern: /((?:\bnode\s+|[~=\(\[\{,]\s*|[=+]>\s*|^\s*))\/(?:[^\/\\]|\\[\s\S])+\/(?:[imx]+\b|\B)/,
|
||
lookbehind: true,
|
||
inside: {
|
||
// Extended regexes must have the x flag. They can contain single-line comments.
|
||
'extended-regex': {
|
||
pattern: /^\/(?:[^\/\\]|\\[\s\S])+\/[im]*x[im]*$/,
|
||
inside: {
|
||
'comment': /#.*/
|
||
}
|
||
}
|
||
}
|
||
},
|
||
'comment': {
|
||
pattern: /(^|[^\\])#.*/,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
// Allow for one nested level of double quotes inside interpolation
|
||
pattern: /(["'])(?:\$\{(?:[^'"}]|(["'])(?:(?!\2)[^\\]|\\[\s\S])*\2)+\}|(?!\1)[^\\]|\\[\s\S])*\1/,
|
||
inside: {
|
||
'double-quoted': {
|
||
pattern: /^"[\s\S]*"$/,
|
||
inside: {
|
||
// See interpolation below
|
||
}
|
||
}
|
||
}
|
||
},
|
||
'variable': {
|
||
pattern: /\$(?:::)?\w+(?:::\w+)*/,
|
||
inside: {
|
||
'punctuation': /::/
|
||
}
|
||
},
|
||
'attr-name': /(?:\w+|\*)(?=\s*=>)/,
|
||
'function': [
|
||
{
|
||
pattern: /(\.)(?!\d)\w+/,
|
||
lookbehind: true
|
||
},
|
||
/\b(?:contain|debug|err|fail|include|info|notice|realize|require|tag|warning)\b|\b(?!\d)\w+(?=\()/
|
||
],
|
||
'number': /\b(?:0x[a-f\d]+|\d+(?:\.\d+)?(?:e-?\d+)?)\b/i,
|
||
'boolean': /\b(?:true|false)\b/,
|
||
// Includes words reserved for future use
|
||
'keyword': /\b(?:application|attr|case|class|consumes|default|define|else|elsif|function|if|import|inherits|node|private|produces|type|undef|unless)\b/,
|
||
'datatype': {
|
||
pattern: /\b(?:Any|Array|Boolean|Callable|Catalogentry|Class|Collection|Data|Default|Enum|Float|Hash|Integer|NotUndef|Numeric|Optional|Pattern|Regexp|Resource|Runtime|Scalar|String|Struct|Tuple|Type|Undef|Variant)\b/,
|
||
alias: 'symbol'
|
||
},
|
||
'operator': /=[=~>]?|![=~]?|<(?:<\|?|[=~|-])?|>[>=]?|->?|~>|\|>?>?|[*\/%+?]|\b(?:and|in|or)\b/,
|
||
'punctuation': /[\[\]{}().,;]|:+/
|
||
};
|
||
|
||
var interpolation = [
|
||
{
|
||
// Allow for one nested level of braces inside interpolation
|
||
pattern: /(^|[^\\])\$\{(?:[^'"{}]|\{[^}]*\}|(["'])(?:(?!\2)[^\\]|\\[\s\S])*\2)+\}/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'short-variable': {
|
||
// Negative look-ahead prevent wrong highlighting of functions
|
||
pattern: /(^\$\{)(?!\w+\()(?:::)?\w+(?:::\w+)*/,
|
||
lookbehind: true,
|
||
alias: 'variable',
|
||
inside: {
|
||
'punctuation': /::/
|
||
}
|
||
},
|
||
'delimiter': {
|
||
pattern: /^\$/,
|
||
alias: 'variable'
|
||
},
|
||
rest: Prism.util.clone(Prism.languages.puppet)
|
||
}
|
||
},
|
||
{
|
||
pattern: /(^|[^\\])\$(?:::)?\w+(?:::\w+)*/,
|
||
lookbehind: true,
|
||
alias: 'variable',
|
||
inside: {
|
||
'punctuation': /::/
|
||
}
|
||
}
|
||
];
|
||
Prism.languages.puppet['heredoc'][0].inside.interpolation = interpolation;
|
||
Prism.languages.puppet['string'].inside['double-quoted'].inside.interpolation = interpolation;
|
||
}(Prism));
|
||
(function (Prism) {
|
||
Prism.languages.pure = {
|
||
'inline-lang': {
|
||
pattern: /%<[\s\S]+?%>/,
|
||
inside: {
|
||
'lang': {
|
||
pattern: /(^%< *)-\*-.+?-\*-/,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
},
|
||
'delimiter': {
|
||
pattern: /^%<.*|%>$/,
|
||
alias: 'punctuation'
|
||
}
|
||
}
|
||
},
|
||
'comment': [
|
||
{
|
||
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
||
greedy: true,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(^|[^\\:])\/\/.*/,
|
||
lookbehind: true
|
||
},
|
||
/#!.+/
|
||
],
|
||
'string': {
|
||
pattern: /"(?:\\.|[^"\\\r\n])*"/,
|
||
greedy: true
|
||
},
|
||
'number': {
|
||
// The look-behind prevents wrong highlighting of the .. operator
|
||
pattern: /((?:\.\.)?)(?:\b(?:inf|nan)\b|\b0x[\da-f]+|(?:\b(?:0b)?\d+(?:\.\d)?|\B\.\d)\d*(?:e[+-]?\d+)?L?)/i,
|
||
lookbehind: true
|
||
},
|
||
'keyword': /\b(?:ans|break|bt|case|catch|cd|clear|const|def|del|dump|else|end|exit|extern|false|force|help|if|infix[lr]?|interface|let|ls|mem|namespace|nonfix|NULL|of|otherwise|outfix|override|postfix|prefix|private|public|pwd|quit|run|save|show|stats|then|throw|trace|true|type|underride|using|when|with)\b/,
|
||
'function': /\b(?:abs|add_(?:(?:fundef|interface|macdef|typedef)(?:_at)?|addr|constdef|vardef)|all|any|applp?|arity|bigintp?|blob(?:_crc|_size|p)?|boolp?|byte_(?:matrix|pointer)|byte_c?string(?:_pointer)?|calloc|cat|catmap|ceil|char[ps]?|check_ptrtag|chr|clear_sentry|clearsym|closurep?|cmatrixp?|cols?|colcat(?:map)?|colmap|colrev|colvector(?:p|seq)?|complex(?:_float_(?:matrix|pointer)|_matrix(?:_view)?|_pointer|p)?|conj|cookedp?|cst|cstring(?:_(?:dup|list|vector))?|curry3?|cyclen?|del_(?:constdef|fundef|interface|macdef|typedef|vardef)|delete|diag(?:mat)?|dim|dmatrixp?|do|double(?:_matrix(?:_view)?|_pointer|p)?|dowith3?|drop|dropwhile|eval(?:cmd)?|exactp|filter|fix|fixity|flip|float(?:_matrix|_pointer)|floor|fold[lr]1?|frac|free|funp?|functionp?|gcd|get(?:_(?:byte|constdef|double|float|fundef|int(?:64)?|interface(?:_typedef)?|long|macdef|pointer|ptrtag|short|sentry|string|typedef|vardef))?|globsym|hash|head|id|im|imatrixp?|index|inexactp|infp|init|insert|int(?:_matrix(?:_view)?|_pointer|p)?|int64_(?:matrix|pointer)|integerp?|iteraten?|iterwhile|join|keys?|lambdap?|last(?:err(?:pos)?)?|lcd|list[2p]?|listmap|make_ptrtag|malloc|map|matcat|matrixp?|max|member|min|nanp|nargs|nmatrixp?|null|numberp?|ord|pack(?:ed)?|pointer(?:_cast|_tag|_type|p)?|pow|pred|ptrtag|put(?:_(?:byte|double|float|int(?:64)?|long|pointer|short|string))?|rationalp?|re|realp?|realloc|recordp?|redim|reduce(?:_with)?|refp?|repeatn?|reverse|rlistp?|round|rows?|rowcat(?:map)?|rowmap|rowrev|rowvector(?:p|seq)?|same|scan[lr]1?|sentry|sgn|short_(?:matrix|pointer)|slice|smatrixp?|sort|split|str|strcat|stream|stride|string(?:_(?:dup|list|vector)|p)?|subdiag(?:mat)?|submat|subseq2?|substr|succ|supdiag(?:mat)?|symbolp?|tail|take|takewhile|thunkp?|transpose|trunc|tuplep?|typep|ubyte|uint(?:64)?|ulong|uncurry3?|unref|unzip3?|update|ushort|vals?|varp?|vector(?:p|seq)?|void|zip3?|zipwith3?)\b/,
|
||
'special': {
|
||
pattern: /\b__[a-z]+__\b/i,
|
||
alias: 'builtin'
|
||
},
|
||
// Any combination of operator chars can be an operator
|
||
'operator': /(?=\b_|[^_])[!"#$%&'*+,\-.\/:<=>?@\\^_`|~\u00a1-\u00bf\u00d7-\u00f7\u20d0-\u2bff]+|\b(?:and|div|mod|not|or)\b/,
|
||
// FIXME: How can we prevent | and , to be highlighted as operator when they are used alone?
|
||
'punctuation': /[(){}\[\];,|]/
|
||
};
|
||
|
||
var inlineLanguages = [
|
||
'c',
|
||
{ lang: 'c++', alias: 'cpp' },
|
||
'fortran',
|
||
'ats',
|
||
'dsp'
|
||
];
|
||
var inlineLanguageRe = '%< *-\\*- *{lang}\\d* *-\\*-[\\s\\S]+?%>';
|
||
|
||
inlineLanguages.forEach(function (lang) {
|
||
var alias = lang;
|
||
if (typeof lang !== 'string') {
|
||
alias = lang.alias;
|
||
lang = lang.lang;
|
||
}
|
||
if (Prism.languages[alias]) {
|
||
var o = {};
|
||
o['inline-lang-' + alias] = {
|
||
pattern: RegExp(inlineLanguageRe.replace('{lang}', lang.replace(/([.+*?\/\\(){}\[\]])/g,'\\$1')), 'i'),
|
||
inside: Prism.util.clone(Prism.languages.pure['inline-lang'].inside)
|
||
};
|
||
o['inline-lang-' + alias].inside.rest = Prism.util.clone(Prism.languages[alias]);
|
||
Prism.languages.insertBefore('pure', 'inline-lang', o);
|
||
}
|
||
});
|
||
|
||
// C is the default inline language
|
||
if (Prism.languages.c) {
|
||
Prism.languages.pure['inline-lang'].inside.rest = Prism.util.clone(Prism.languages.c);
|
||
}
|
||
|
||
}(Prism));
|
||
Prism.languages.python= {
|
||
'triple-quoted-string': {
|
||
pattern: /"""[\s\S]+?"""|'''[\s\S]+?'''/,
|
||
alias: 'string'
|
||
},
|
||
'comment': {
|
||
pattern: /(^|[^\\])#.*/,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
pattern: /("|')(?:\\\\|\\?[^\\\r\n])*?\1/,
|
||
greedy: true
|
||
},
|
||
'function' : {
|
||
pattern: /((?:^|\s)def[ \t]+)[a-zA-Z_][a-zA-Z0-9_]*(?=\()/g,
|
||
lookbehind: true
|
||
},
|
||
'class-name': {
|
||
pattern: /(\bclass\s+)[a-z0-9_]+/i,
|
||
lookbehind: true
|
||
},
|
||
'keyword' : /\b(?:as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|pass|print|raise|return|try|while|with|yield)\b/,
|
||
'boolean' : /\b(?:True|False)\b/,
|
||
'number' : /\b-?(?:0[bo])?(?:(?:\d|0x[\da-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,
|
||
'operator' : /[-+%=]=?|!=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]|\b(?:or|and|not)\b/,
|
||
'punctuation' : /[{}[\];(),.:]/
|
||
};
|
||
|
||
Prism.languages.q = {
|
||
'string': /"(?:\\.|[^"\\\r\n])*"/,
|
||
'comment': [
|
||
// From http://code.kx.com/wiki/Reference/Slash:
|
||
// When / is following a space (or a right parenthesis, bracket, or brace), it is ignored with the rest of the line.
|
||
{
|
||
|
||
pattern: /([\t )\]}])\/.*/,
|
||
lookbehind: true
|
||
},
|
||
// From http://code.kx.com/wiki/Reference/Slash:
|
||
// A line which has / as its first character and contains at least one other non-whitespace character is a whole-line comment and is ignored entirely.
|
||
// A / on a line by itself begins a multiline comment which is terminated by the next \ on a line by itself.
|
||
// If a / is not matched by a \, the multiline comment is unterminated and continues to end of file.
|
||
// The / and \ must be the first char on the line, but may be followed by any amount of whitespace.
|
||
{
|
||
pattern: /(^|\r?\n|\r)\/[\t ]*(?:(?:\r?\n|\r)(?:.*(?:\r?\n|\r))*?(?:\\(?=[\t ]*(?:\r?\n|\r))|$)|\S.*)/,
|
||
lookbehind: true
|
||
},
|
||
// From http://code.kx.com/wiki/Reference/Slash:
|
||
// A \ on a line by itself with no preceding matching / will comment to end of file.
|
||
/^\\[\t ]*(?:\r?\n|\r)[\s\S]+/m,
|
||
|
||
/^#!.+/m
|
||
],
|
||
'symbol': /`(?::\S+|[\w.]*)/,
|
||
'datetime': {
|
||
pattern: /0N[mdzuvt]|0W[dtz]|\d{4}\.\d\d(?:m|\.\d\d(?:T(?:\d\d(?::\d\d(?::\d\d(?:[.:]\d\d\d)?)?)?)?)?[dz]?)|\d\d:\d\d(?::\d\d(?:[.:]\d\d\d)?)?[uvt]?/,
|
||
alias: 'number'
|
||
},
|
||
// The negative look-ahead prevents bad highlighting
|
||
// of verbs 0: and 1:
|
||
'number': /\b-?(?![01]:)(?:0[wn]|0W[hj]?|0N[hje]?|0x[\da-fA-F]+|\d+\.?\d*(?:e[+-]?\d+)?[hjfeb]?)/,
|
||
'keyword': /\\\w+\b|\b(?:abs|acos|aj0?|all|and|any|asc|asin|asof|atan|attr|avgs?|binr?|by|ceiling|cols|cor|cos|count|cov|cross|csv|cut|delete|deltas|desc|dev|differ|distinct|div|do|dsave|ej|enlist|eval|except|exec|exit|exp|fby|fills|first|fkeys|flip|floor|from|get|getenv|group|gtime|hclose|hcount|hdel|hopen|hsym|iasc|identity|idesc|if|ij|in|insert|inter|inv|keys?|last|like|list|ljf?|load|log|lower|lsq|ltime|ltrim|mavg|maxs?|mcount|md5|mdev|med|meta|mins?|mmax|mmin|mmu|mod|msum|neg|next|not|null|or|over|parse|peach|pj|plist|prds?|prev|prior|rand|rank|ratios|raze|read0|read1|reciprocal|reval|reverse|rload|rotate|rsave|rtrim|save|scan|scov|sdev|select|set|setenv|show|signum|sin|sqrt|ssr?|string|sublist|sums?|sv|svar|system|tables|tan|til|trim|txf|type|uj|ungroup|union|update|upper|upsert|value|var|views?|vs|wavg|where|while|within|wj1?|wsum|ww|xasc|xbar|xcols?|xdesc|xexp|xgroup|xkey|xlog|xprev|xrank)\b/,
|
||
'adverb': {
|
||
pattern: /['\/\\]:?|\beach\b/,
|
||
alias: 'function'
|
||
},
|
||
'verb': {
|
||
pattern: /(?:\B\.\B|\b[01]:|<[=>]?|>=?|[:+\-*%,!?_~=|$&#@^]):?/,
|
||
alias: 'operator'
|
||
},
|
||
'punctuation': /[(){}\[\];.]/
|
||
};
|
||
Prism.languages.qore = Prism.languages.extend('clike', {
|
||
'comment': {
|
||
pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:\/\/|#).*)/,
|
||
lookbehind: true
|
||
},
|
||
// Overridden to allow unescaped multi-line strings
|
||
'string': {
|
||
pattern: /("|')(\\(?:\r\n|[\s\S])|(?!\1)[^\\])*\1/,
|
||
greedy: true
|
||
},
|
||
'variable': /\$(?!\d)\w+\b/,
|
||
'keyword': /\b(?:abstract|any|assert|binary|bool|boolean|break|byte|case|catch|char|class|code|const|continue|data|default|do|double|else|enum|extends|final|finally|float|for|goto|hash|if|implements|import|inherits|instanceof|int|interface|long|my|native|new|nothing|null|object|our|own|private|reference|rethrow|return|short|soft(?:int|float|number|bool|string|date|list)|static|strictfp|string|sub|super|switch|synchronized|this|throw|throws|transient|try|void|volatile|while)\b/,
|
||
'number': /\b(?:0b[01]+|0x[\da-f]*\.?[\da-fp\-]+|\d*\.?\d+e?\d*[df]|\d*\.?\d+)\b/i,
|
||
'boolean': /\b(?:true|false)\b/i,
|
||
'operator': {
|
||
pattern: /(^|[^\.])(?:\+[+=]?|-[-=]?|[!=](?:==?|~)?|>>?=?|<(?:=>?|<=?)?|&[&=]?|\|[|=]?|[*\/%^]=?|[~?])/,
|
||
lookbehind: true
|
||
},
|
||
'function': /\$?\b(?!\d)\w+(?=\()/
|
||
});
|
||
Prism.languages.r = {
|
||
'comment': /#.*/,
|
||
'string': {
|
||
pattern: /(['"])(?:\\?.)*?\1/,
|
||
greedy: true
|
||
},
|
||
'percent-operator': {
|
||
// Includes user-defined operators
|
||
// and %%, %*%, %/%, %in%, %o%, %x%
|
||
pattern: /%[^%\s]*%/,
|
||
alias: 'operator'
|
||
},
|
||
'boolean': /\b(?:TRUE|FALSE)\b/,
|
||
'ellipsis': /\.\.(?:\.|\d+)/,
|
||
'number': [
|
||
/\b(?:NaN|Inf)\b/,
|
||
/\b(?:0x[\dA-Fa-f]+(?:\.\d*)?|\d*\.?\d+)(?:[EePp][+-]?\d+)?[iL]?\b/
|
||
],
|
||
'keyword': /\b(?:if|else|repeat|while|function|for|in|next|break|NULL|NA|NA_integer_|NA_real_|NA_complex_|NA_character_)\b/,
|
||
'operator': /->?>?|<(?:=|<?-)?|[>=!]=?|::?|&&?|\|\|?|[+*\/^$@~]/,
|
||
'punctuation': /[(){}\[\],;]/
|
||
};
|
||
(function(Prism) {
|
||
|
||
var javascript = Prism.util.clone(Prism.languages.javascript);
|
||
|
||
Prism.languages.jsx = Prism.languages.extend('markup', javascript);
|
||
Prism.languages.jsx.tag.pattern= /<\/?[\w\.:-]+\s*(?:\s+(?:[\w\.:-]+(?:=(?:("|')(\\?[\s\S])*?\1|[^\s'">=]+|(\{[\s\S]*?\})))?|\{\.{3}\w+\})\s*)*\/?>/i;
|
||
|
||
Prism.languages.jsx.tag.inside['attr-value'].pattern = /=(?!\{)(?:('|")[\s\S]*?(\1)|[^\s>]+)/i;
|
||
|
||
Prism.languages.insertBefore('inside', 'attr-name', {
|
||
'spread': {
|
||
pattern: /\{\.{3}\w+\}/,
|
||
inside: {
|
||
'punctuation': /\{|\}|\./,
|
||
'attr-value': /\w+/
|
||
}
|
||
}
|
||
}, Prism.languages.jsx.tag);
|
||
|
||
var jsxExpression = Prism.util.clone(Prism.languages.jsx);
|
||
|
||
delete jsxExpression.punctuation
|
||
|
||
jsxExpression = Prism.languages.insertBefore('jsx', 'operator', {
|
||
'punctuation': /=(?={)|[{}[\];(),.:]/
|
||
}, { jsx: jsxExpression });
|
||
|
||
Prism.languages.insertBefore('inside', 'attr-value',{
|
||
'script': {
|
||
// Allow for one level of nesting
|
||
pattern: /=(\{(?:\{[^}]*\}|[^}])+\})/i,
|
||
inside: jsxExpression,
|
||
'alias': 'language-javascript'
|
||
}
|
||
}, Prism.languages.jsx.tag);
|
||
|
||
}(Prism));
|
||
|
||
Prism.languages.reason = Prism.languages.extend('clike', {
|
||
'comment': {
|
||
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
pattern: /"(\\(?:\r\n|[\s\S])|[^\\\r\n"])*"/,
|
||
greedy: true
|
||
},
|
||
// 'class-name' must be matched *after* 'constructor' defined below
|
||
'class-name': /\b[A-Z]\w*/,
|
||
'keyword': /\b(?:and|as|assert|begin|class|constraint|do|done|downto|else|end|exception|external|for|fun|function|functor|if|in|include|inherit|initializer|lazy|let|method|module|mutable|new|nonrec|object|of|open|or|private|rec|sig|struct|switch|then|to|try|type|val|virtual|when|while|with)\b/,
|
||
'operator': /\.{3}|:[:=]|=(?:==?|>)?|<=?|>=?|[|^?'#!~`]|[+\-*\/]\.?|\b(?:mod|land|lor|lxor|lsl|lsr|asr)\b/
|
||
});
|
||
Prism.languages.insertBefore('reason', 'class-name', {
|
||
'character': {
|
||
pattern: /'(?:\\x[\da-f]{2}|\\o[0-3][0-7][0-7]|\\\d{3}|\\.|[^'])'/,
|
||
alias: 'string'
|
||
},
|
||
'constructor': {
|
||
// Negative look-ahead prevents from matching things like String.capitalize
|
||
pattern: /\b[A-Z]\w*\b(?!\s*\.)/,
|
||
alias: 'variable'
|
||
},
|
||
'label': {
|
||
pattern: /\b[a-z]\w*(?=::)/,
|
||
alias: 'symbol'
|
||
}
|
||
});
|
||
|
||
// We can't match functions property, so let's not even try.
|
||
delete Prism.languages.reason.function;
|
||
Prism.languages.rest = {
|
||
'table': [
|
||
{
|
||
pattern: /(\s*)(?:\+[=-]+)+\+(?:\r?\n|\r)(?:\1(?:[+|].+)+[+|](?:\r?\n|\r))+\1(?:\+[=-]+)+\+/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'punctuation': /\||(?:\+[=-]+)+\+/
|
||
}
|
||
},
|
||
{
|
||
pattern: /(\s*)(?:=+ +)+=+((?:\r?\n|\r)\1.+)+(?:\r?\n|\r)\1(?:=+ +)+=+(?=(?:\r?\n|\r){2}|\s*$)/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'punctuation': /[=-]+/
|
||
}
|
||
}
|
||
],
|
||
|
||
// Directive-like patterns
|
||
|
||
'substitution-def': {
|
||
pattern: /(^\s*\.\. )\|(?:[^|\s](?:[^|]*[^|\s])?)\| [^:]+::/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'substitution': {
|
||
pattern: /^\|(?:[^|\s]|[^|\s][^|]*[^|\s])\|/,
|
||
alias: 'attr-value',
|
||
inside: {
|
||
'punctuation': /^\||\|$/
|
||
}
|
||
},
|
||
'directive': {
|
||
pattern: /( +)[^:]+::/,
|
||
lookbehind: true,
|
||
alias: 'function',
|
||
inside: {
|
||
'punctuation': /::$/
|
||
}
|
||
}
|
||
}
|
||
},
|
||
'link-target': [
|
||
{
|
||
pattern: /(^\s*\.\. )\[[^\]]+\]/m,
|
||
lookbehind: true,
|
||
alias: 'string',
|
||
inside: {
|
||
'punctuation': /^\[|\]$/
|
||
}
|
||
},
|
||
{
|
||
pattern: /(^\s*\.\. )_(?:`[^`]+`|(?:[^:\\]|\\.)+):/m,
|
||
lookbehind: true,
|
||
alias: 'string',
|
||
inside: {
|
||
'punctuation': /^_|:$/
|
||
}
|
||
}
|
||
],
|
||
'directive': {
|
||
pattern: /(^\s*\.\. )[^:]+::/m,
|
||
lookbehind: true,
|
||
alias: 'function',
|
||
inside: {
|
||
'punctuation': /::$/
|
||
}
|
||
},
|
||
'comment': {
|
||
// The two alternatives try to prevent highlighting of blank comments
|
||
pattern: /(^\s*\.\.)(?:(?: .+)?(?:(?:\r?\n|\r).+)+| .+)(?=(?:\r?\n|\r){2}|$)/m,
|
||
lookbehind: true
|
||
},
|
||
|
||
'title': [
|
||
// Overlined and underlined
|
||
{
|
||
pattern: /^(([!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~])\2+)(?:\r?\n|\r).+(?:\r?\n|\r)\1$/m,
|
||
inside: {
|
||
'punctuation': /^[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~]+|[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~]+$/,
|
||
'important': /.+/
|
||
}
|
||
},
|
||
|
||
// Underlined only
|
||
{
|
||
pattern: /(^|(?:\r?\n|\r){2}).+(?:\r?\n|\r)([!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~])\2+(?=\r?\n|\r|$)/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'punctuation': /[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~]+$/,
|
||
'important': /.+/
|
||
}
|
||
}
|
||
],
|
||
'hr': {
|
||
pattern: /((?:\r?\n|\r){2})([!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~])\2{3,}(?=(?:\r?\n|\r){2})/,
|
||
lookbehind: true,
|
||
alias: 'punctuation'
|
||
},
|
||
'field': {
|
||
pattern: /(^\s*):[^:\r\n]+:(?= )/m,
|
||
lookbehind: true,
|
||
alias: 'attr-name'
|
||
},
|
||
'command-line-option': {
|
||
pattern: /(^\s*)(?:[+-][a-z\d]|(?:\-\-|\/)[a-z\d-]+)(?:[ =](?:[a-z][a-z\d_-]*|<[^<>]+>))?(?:, (?:[+-][a-z\d]|(?:\-\-|\/)[a-z\d-]+)(?:[ =](?:[a-z][a-z\d_-]*|<[^<>]+>))?)*(?=(?:\r?\n|\r)? {2,}\S)/im,
|
||
lookbehind: true,
|
||
alias: 'symbol'
|
||
},
|
||
'literal-block': {
|
||
pattern: /::(?:\r?\n|\r){2}([ \t]+).+(?:(?:\r?\n|\r)\1.+)*/,
|
||
inside: {
|
||
'literal-block-punctuation': {
|
||
pattern: /^::/,
|
||
alias: 'punctuation'
|
||
}
|
||
}
|
||
},
|
||
'quoted-literal-block': {
|
||
pattern: /::(?:\r?\n|\r){2}([!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~]).*(?:(?:\r?\n|\r)\1.*)*/,
|
||
inside: {
|
||
'literal-block-punctuation': {
|
||
pattern: /^(?:::|([!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~])\1*)/m,
|
||
alias: 'punctuation'
|
||
}
|
||
}
|
||
},
|
||
'list-bullet': {
|
||
pattern: /(^\s*)(?:[*+\-•‣⁃]|\(?(?:\d+|[a-z]|[ivxdclm]+)\)|(?:\d+|[a-z]|[ivxdclm]+)\.)(?= )/im,
|
||
lookbehind: true,
|
||
alias: 'punctuation'
|
||
},
|
||
'doctest-block': {
|
||
pattern: /(^\s*)>>> .+(?:(?:\r?\n|\r).+)*/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'punctuation': /^>>>/
|
||
}
|
||
},
|
||
|
||
'inline': [
|
||
{
|
||
pattern: /(^|[\s\-:\/'"<(\[{])(?::[^:]+:`.*?`|`.*?`:[^:]+:|(\*\*?|``?|\|)(?!\s).*?[^\s]\2(?=[\s\-.,:;!?\\\/'")\]}]|$))/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'bold': {
|
||
pattern: /(^\*\*).+(?=\*\*$)/,
|
||
lookbehind: true
|
||
},
|
||
'italic': {
|
||
pattern: /(^\*).+(?=\*$)/,
|
||
lookbehind: true
|
||
},
|
||
'inline-literal': {
|
||
pattern: /(^``).+(?=``$)/,
|
||
lookbehind: true,
|
||
alias: 'symbol'
|
||
},
|
||
'role': {
|
||
pattern: /^:[^:]+:|:[^:]+:$/,
|
||
alias: 'function',
|
||
inside: {
|
||
'punctuation': /^:|:$/
|
||
}
|
||
},
|
||
'interpreted-text': {
|
||
pattern: /(^`).+(?=`$)/,
|
||
lookbehind: true,
|
||
alias: 'attr-value'
|
||
},
|
||
'substitution': {
|
||
pattern: /(^\|).+(?=\|$)/,
|
||
lookbehind: true,
|
||
alias: 'attr-value'
|
||
},
|
||
'punctuation': /\*\*?|``?|\|/
|
||
}
|
||
}
|
||
],
|
||
|
||
'link': [
|
||
{
|
||
pattern: /\[[^\]]+\]_(?=[\s\-.,:;!?\\\/'")\]}]|$)/,
|
||
alias: 'string',
|
||
inside: {
|
||
'punctuation': /^\[|\]_$/
|
||
}
|
||
},
|
||
{
|
||
pattern: /(?:\b[a-z\d](?:[_.:+]?[a-z\d]+)*_?_|`[^`]+`_?_|_`[^`]+`)(?=[\s\-.,:;!?\\\/'")\]}]|$)/i,
|
||
alias: 'string',
|
||
inside: {
|
||
'punctuation': /^_?`|`$|`?_?_$/
|
||
}
|
||
}
|
||
],
|
||
|
||
// Line block start,
|
||
// quote attribution,
|
||
// explicit markup start,
|
||
// and anonymous hyperlink target shortcut (__)
|
||
'punctuation': {
|
||
pattern: /(^\s*)(?:\|(?= |$)|(?:---?|—|\.\.|__)(?= )|\.\.$)/m,
|
||
lookbehind: true
|
||
}
|
||
};
|
||
Prism.languages.rip = {
|
||
'comment': /#.*/,
|
||
|
||
'keyword': /(?:=>|->)|\b(?:class|if|else|switch|case|return|exit|try|catch|finally|raise)\b/,
|
||
|
||
'builtin': /@|\bSystem\b/,
|
||
|
||
'boolean': /\b(?:true|false)\b/,
|
||
|
||
'date': /\b\d{4}-\d{2}-\d{2}\b/,
|
||
'time': /\b\d{2}:\d{2}:\d{2}\b/,
|
||
'datetime': /\b\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\b/,
|
||
|
||
'character': /\B`[^\s`'",.:;#\/\\()<>\[\]{}]\b/,
|
||
|
||
'regex': {
|
||
pattern: /(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\\\r\n])+\/(?=\s*($|[\r\n,.;})]))/,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
|
||
'symbol': /:[^\d\s`'",.:;#\/\\()<>\[\]{}][^\s`'",.:;#\/\\()<>\[\]{}]*/,
|
||
'string': {
|
||
pattern: /("|')(\\?.)*?\1/,
|
||
greedy: true
|
||
},
|
||
'number': /[+-]?(?:(?:\d+\.\d+)|(?:\d+))/,
|
||
|
||
'punctuation': /(?:\.{2,3})|[`,.:;=\/\\()<>\[\]{}]/,
|
||
|
||
'reference': /[^\d\s`'",.:;#\/\\()<>\[\]{}][^\s`'",.:;#\/\\()<>\[\]{}]*/
|
||
};
|
||
|
||
Prism.languages.roboconf = {
|
||
'comment': /#.*/,
|
||
'keyword': {
|
||
'pattern': /(^|\s)(?:(?:facet|instance of)(?=[ \t]+[\w-]+[ \t]*\{)|(?:external|import)\b)/,
|
||
lookbehind: true
|
||
},
|
||
'component': {
|
||
pattern: /[\w-]+(?=[ \t]*\{)/,
|
||
alias: 'variable'
|
||
},
|
||
'property': /[\w.-]+(?=[ \t]*:)/,
|
||
'value': {
|
||
pattern: /(=[ \t]*)[^,;]+/,
|
||
lookbehind: true,
|
||
alias: 'attr-value'
|
||
},
|
||
'optional': {
|
||
pattern: /\(optional\)/,
|
||
alias: 'builtin'
|
||
},
|
||
'wildcard': {
|
||
pattern: /(\.)\*/,
|
||
lookbehind: true,
|
||
alias: 'operator'
|
||
},
|
||
'punctuation': /[{},.;:=]/
|
||
};
|
||
(function(Prism) {
|
||
Prism.languages.crystal = Prism.languages.extend('ruby', {
|
||
keyword: [
|
||
/\b(?:abstract|alias|as|asm|begin|break|case|class|def|do|else|elsif|end|ensure|enum|extend|for|fun|if|include|instance_sizeof|lib|macro|module|next|of|out|pointerof|private|protected|rescue|return|require|select|self|sizeof|struct|super|then|type|typeof|uninitialized|union|unless|until|when|while|with|yield|__DIR__|__END_LINE__|__FILE__|__LINE__)\b/,
|
||
{
|
||
pattern: /(\.\s*)(?:is_a|responds_to)\?/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
|
||
number: /\b(?:0b[01_]*[01]|0o[0-7_]*[0-7]|0x[0-9a-fA-F_]*[0-9a-fA-F]|(?:\d(?:[0-9_]*\d)?)(?:\.[0-9_]*\d)?(?:[eE][+-]?[0-9_]*\d)?)(?:_(?:[uif](?:8|16|32|64))?)?\b/,
|
||
});
|
||
|
||
var rest = Prism.util.clone(Prism.languages.crystal);
|
||
|
||
Prism.languages.insertBefore('crystal', 'string', {
|
||
attribute: {
|
||
pattern: /@\[.+?\]/,
|
||
alias: 'attr-name',
|
||
inside: {
|
||
delimiter: {
|
||
pattern: /^@\[|\]$/,
|
||
alias: 'tag'
|
||
},
|
||
rest: rest
|
||
}
|
||
},
|
||
|
||
expansion: [
|
||
{
|
||
pattern: /\{\{.+?\}\}/,
|
||
inside: {
|
||
delimiter: {
|
||
pattern: /^\{\{|\}\}$/,
|
||
alias: 'tag'
|
||
},
|
||
rest: rest
|
||
}
|
||
},
|
||
{
|
||
pattern: /\{%.+?%\}/,
|
||
inside: {
|
||
delimiter: {
|
||
pattern: /^\{%|%\}$/,
|
||
alias: 'tag'
|
||
},
|
||
rest: rest
|
||
}
|
||
}
|
||
]
|
||
});
|
||
|
||
}(Prism));
|
||
|
||
/* TODO
|
||
Add support for Markdown notation inside doc comments
|
||
Add support for nested block comments...
|
||
Match closure params even when not followed by dash or brace
|
||
Add better support for macro definition
|
||
*/
|
||
|
||
Prism.languages.rust = {
|
||
'comment': [
|
||
{
|
||
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(^|[^\\:])\/\/.*/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'string': [
|
||
{
|
||
pattern: /b?r(#*)"(?:\\?.)*?"\1/,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /b?("|')(?:\\?.)*?\1/,
|
||
greedy: true
|
||
}
|
||
],
|
||
'keyword': /\b(?:abstract|alignof|as|be|box|break|const|continue|crate|do|else|enum|extern|false|final|fn|for|if|impl|in|let|loop|match|mod|move|mut|offsetof|once|override|priv|pub|pure|ref|return|sizeof|static|self|struct|super|true|trait|type|typeof|unsafe|unsized|use|virtual|where|while|yield)\b/,
|
||
|
||
'attribute': {
|
||
pattern: /#!?\[.+?\]/,
|
||
greedy: true,
|
||
alias: 'attr-name'
|
||
},
|
||
|
||
'function': [
|
||
/[a-z0-9_]+(?=\s*\()/i,
|
||
// Macros can use parens or brackets
|
||
/[a-z0-9_]+!(?=\s*\(|\[)/i
|
||
],
|
||
'macro-rules': {
|
||
pattern: /[a-z0-9_]+!/i,
|
||
alias: 'function'
|
||
},
|
||
|
||
// Hex, oct, bin, dec numbers with visual separators and type suffix
|
||
'number': /\b-?(?:0x[\dA-Fa-f](?:_?[\dA-Fa-f])*|0o[0-7](?:_?[0-7])*|0b[01](?:_?[01])*|(\d(_?\d)*)?\.?\d(_?\d)*([Ee][+-]?\d+)?)(?:_?(?:[iu](?:8|16|32|64)?|f32|f64))?\b/,
|
||
|
||
// Closure params should not be confused with bitwise OR |
|
||
'closure-params': {
|
||
pattern: /\|[^|]*\|(?=\s*[{-])/,
|
||
inside: {
|
||
'punctuation': /[\|:,]/,
|
||
'operator': /[&*]/
|
||
}
|
||
},
|
||
'punctuation': /[{}[\];(),:]|\.+|->/,
|
||
'operator': /[-+*\/%!^=]=?|@|&[&=]?|\|[|=]?|<<?=?|>>?=?/
|
||
};
|
||
Prism.languages.sas = {
|
||
'datalines': {
|
||
pattern: /^\s*(?:(?:data)?lines|cards);[\s\S]+?(?:\r?\n|\r);/im,
|
||
alias: 'string',
|
||
inside: {
|
||
'keyword': {
|
||
pattern: /^(\s*)(?:(?:data)?lines|cards)/i,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /;/
|
||
}
|
||
},
|
||
'comment': [
|
||
{
|
||
pattern: /(^\s*|;\s*)\*.*;/m,
|
||
lookbehind: true
|
||
},
|
||
/\/\*[\s\S]+?\*\//
|
||
],
|
||
'datetime': {
|
||
// '1jan2013'd, '9:25:19pm't, '18jan2003:9:27:05am'dt
|
||
pattern: /'[^']+'(?:dt?|t)\b/i,
|
||
alias: 'number'
|
||
},
|
||
'string': {
|
||
pattern: /(["'])(?:\1\1|(?!\1)[\s\S])*\1/,
|
||
greedy: true
|
||
},
|
||
'keyword': /\b(?:data|else|format|if|input|proc\s\w+|quit|run|then)\b/i,
|
||
// Decimal (1.2e23), hexadecimal (0c1x)
|
||
'number': /(?:\B-|\b)(?:[\da-f]+x|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,
|
||
'operator': /\*\*?|\|\|?|!!?|¦¦?|<[>=]?|>[<=]?|[-+\/=&]|[~¬^]=?|\b(?:eq|ne|gt|lt|ge|le|in|not)\b/i,
|
||
'punctuation': /[$%@.(){}\[\];,\\]/
|
||
};
|
||
|
||
(function(Prism) {
|
||
Prism.languages.sass = Prism.languages.extend('css', {
|
||
// Sass comments don't need to be closed, only indented
|
||
'comment': {
|
||
pattern: /^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('sass', 'atrule', {
|
||
// We want to consume the whole line
|
||
'atrule-line': {
|
||
// Includes support for = and + shortcuts
|
||
pattern: /^(?:[ \t]*)[@+=].+/m,
|
||
inside: {
|
||
'atrule': /(?:@[\w-]+|[+=])/m
|
||
}
|
||
}
|
||
});
|
||
delete Prism.languages.sass.atrule;
|
||
|
||
|
||
var variable = /((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i;
|
||
var operator = [
|
||
/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,
|
||
{
|
||
pattern: /(\s+)-(?=\s)/,
|
||
lookbehind: true
|
||
}
|
||
];
|
||
|
||
Prism.languages.insertBefore('sass', 'property', {
|
||
// We want to consume the whole line
|
||
'variable-line': {
|
||
pattern: /^[ \t]*\$.+/m,
|
||
inside: {
|
||
'punctuation': /:/,
|
||
'variable': variable,
|
||
'operator': operator
|
||
}
|
||
},
|
||
// We want to consume the whole line
|
||
'property-line': {
|
||
pattern: /^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,
|
||
inside: {
|
||
'property': [
|
||
/[^:\s]+(?=\s*:)/,
|
||
{
|
||
pattern: /(:)[^:\s]+/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'punctuation': /:/,
|
||
'variable': variable,
|
||
'operator': operator,
|
||
'important': Prism.languages.sass.important
|
||
}
|
||
}
|
||
});
|
||
delete Prism.languages.sass.property;
|
||
delete Prism.languages.sass.important;
|
||
|
||
// Now that whole lines for other patterns are consumed,
|
||
// what's left should be selectors
|
||
delete Prism.languages.sass.selector;
|
||
Prism.languages.insertBefore('sass', 'punctuation', {
|
||
'selector': {
|
||
pattern: /([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
}(Prism));
|
||
Prism.languages.scss = Prism.languages.extend('css', {
|
||
'comment': {
|
||
pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,
|
||
lookbehind: true
|
||
},
|
||
'atrule': {
|
||
pattern: /@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,
|
||
inside: {
|
||
'rule': /@[\w-]+/
|
||
// See rest below
|
||
}
|
||
},
|
||
// url, compassified
|
||
'url': /(?:[-a-z]+-)*url(?=\()/i,
|
||
// CSS selector regex is not appropriate for Sass
|
||
// since there can be lot more things (var, @ directive, nesting..)
|
||
// a selector must start at the end of a property or after a brace (end of other rules or nesting)
|
||
// it can contain some characters that aren't used for defining rules or end of selector, & (parent selector), or interpolated variable
|
||
// the end of a selector is found when there is no rules in it ( {} or {\s}) or if there is a property (because an interpolated var
|
||
// can "pass" as a selector- e.g: proper#{$erty})
|
||
// this one was hard to do, so please be careful if you edit this one :)
|
||
'selector': {
|
||
// Initial look-ahead is used to prevent matching of blank selectors
|
||
pattern: /(?=\S)[^@;\{\}\(\)]?([^@;\{\}\(\)]|&|#\{\$[-_\w]+\})+(?=\s*\{(\}|\s|[^\}]+(:|\{)[^\}]+))/m,
|
||
inside: {
|
||
'parent': {
|
||
pattern: /&/,
|
||
alias: 'important'
|
||
},
|
||
'placeholder': /%[-_\w]+/,
|
||
'variable': /\$[-_\w]+|#\{\$[-_\w]+\}/
|
||
}
|
||
}
|
||
});
|
||
|
||
Prism.languages.insertBefore('scss', 'atrule', {
|
||
'keyword': [
|
||
/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,
|
||
{
|
||
pattern: /( +)(?:from|through)(?= )/,
|
||
lookbehind: true
|
||
}
|
||
]
|
||
});
|
||
|
||
Prism.languages.scss.property = {
|
||
pattern: /(?:[\w-]|\$[-_\w]+|#\{\$[-_\w]+\})+(?=\s*:)/i,
|
||
inside: {
|
||
'variable': /\$[-_\w]+|#\{\$[-_\w]+\}/
|
||
}
|
||
};
|
||
|
||
Prism.languages.insertBefore('scss', 'important', {
|
||
// var and interpolated vars
|
||
'variable': /\$[-_\w]+|#\{\$[-_\w]+\}/
|
||
});
|
||
|
||
Prism.languages.insertBefore('scss', 'function', {
|
||
'placeholder': {
|
||
pattern: /%[-_\w]+/,
|
||
alias: 'selector'
|
||
},
|
||
'statement': {
|
||
pattern: /\B!(?:default|optional)\b/i,
|
||
alias: 'keyword'
|
||
},
|
||
'boolean': /\b(?:true|false)\b/,
|
||
'null': /\bnull\b/,
|
||
'operator': {
|
||
pattern: /(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,
|
||
lookbehind: true
|
||
}
|
||
});
|
||
|
||
Prism.languages.scss['atrule'].inside.rest = Prism.util.clone(Prism.languages.scss);
|
||
Prism.languages.scala = Prism.languages.extend('java', {
|
||
'keyword': /<-|=>|\b(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|null|object|override|package|private|protected|return|sealed|self|super|this|throw|trait|try|type|val|var|while|with|yield)\b/,
|
||
'string': [
|
||
{
|
||
pattern: /"""[\s\S]*?"""/,
|
||
greedy: true
|
||
},
|
||
{
|
||
pattern: /("|')(?:\\\\|\\?[^\\\r\n])*?\1/,
|
||
greedy: true
|
||
}
|
||
],
|
||
'builtin': /\b(?:String|Int|Long|Short|Byte|Boolean|Double|Float|Char|Any|AnyRef|AnyVal|Unit|Nothing)\b/,
|
||
'number': /\b(?:0x[\da-f]*\.?[\da-f]+|\d*\.?\d+e?\d*[dfl]?)\b/i,
|
||
'symbol': /'[^\d\s\\]\w*/
|
||
});
|
||
delete Prism.languages.scala['class-name'];
|
||
delete Prism.languages.scala['function'];
|
||
|
||
Prism.languages.scheme = {
|
||
'comment' : /;.*/,
|
||
'string' : {
|
||
pattern: /"(?:[^"\\\r\n]|\\.)*?"|'[^('\s]*/,
|
||
greedy: true
|
||
},
|
||
'keyword' : {
|
||
pattern : /(\()(?:define(?:-syntax|-library|-values)?|(?:case-)?lambda|let(?:\*|rec)?(?:-values)?|else|if|cond|begin|delay(?:-force)?|parameterize|guard|set!|(?:quasi-)?quote|syntax-rules)/,
|
||
lookbehind : true
|
||
},
|
||
'builtin' : {
|
||
pattern : /(\()(?:(?:cons|car|cdr|list|call-with-current-continuation|call\/cc|append|abs|apply|eval)\b|null\?|pair\?|boolean\?|eof-object\?|char\?|procedure\?|number\?|port\?|string\?|vector\?|symbol\?|bytevector\?)/,
|
||
lookbehind : true
|
||
},
|
||
'number' : {
|
||
pattern: /(\s|\))[-+]?\d*\.?\d+(?:\s*[-+]\s*\d*\.?\d+i)?\b/,
|
||
lookbehind: true
|
||
},
|
||
'boolean' : /#[tf]/,
|
||
'operator': {
|
||
pattern: /(\()(?:[-+*%\/]|[<>]=?|=>?)/,
|
||
lookbehind: true
|
||
},
|
||
'function' : {
|
||
pattern : /(\()[^\s()]*(?=\s)/,
|
||
lookbehind : true
|
||
},
|
||
'punctuation' : /[()]/
|
||
};
|
||
Prism.languages.smalltalk = {
|
||
'comment': /"(?:""|[^"])+"/,
|
||
'string': /'(?:''|[^'])+'/,
|
||
'symbol': /#[\da-z]+|#(?:-|([+\/\\*~<>=@%|&?!])\1?)|#(?=\()/i,
|
||
'block-arguments': {
|
||
pattern: /(\[\s*):[^\[|]*?\|/,
|
||
lookbehind: true,
|
||
inside: {
|
||
'variable': /:[\da-z]+/i,
|
||
'punctuation': /\|/
|
||
}
|
||
},
|
||
'temporary-variables': {
|
||
pattern: /\|[^|]+\|/,
|
||
inside: {
|
||
'variable': /[\da-z]+/i,
|
||
'punctuation': /\|/
|
||
}
|
||
},
|
||
'keyword': /\b(?:nil|true|false|self|super|new)\b/,
|
||
'character': {
|
||
pattern: /\$./,
|
||
alias: 'string'
|
||
},
|
||
'number': [
|
||
/\d+r-?[\dA-Z]+(?:\.[\dA-Z]+)?(?:e-?\d+)?/,
|
||
/(?:\B-|\b)\d+(?:\.\d+)?(?:e-?\d+)?/
|
||
],
|
||
'operator': /[<=]=?|:=|~[~=]|\/\/?|\\\\|>[>=]?|[!^+\-*&|,@]/,
|
||
'punctuation': /[.;:?\[\](){}]/
|
||
};
|
||
/* TODO
|
||
Add support for variables inside double quoted strings
|
||
Add support for {php}
|
||
*/
|
||
|
||
(function(Prism) {
|
||
|
||
var smarty_pattern = /\{\*[\s\S]+?\*\}|\{[\s\S]+?\}/g;
|
||
var smarty_litteral_start = '{literal}';
|
||
var smarty_litteral_end = '{/literal}';
|
||
var smarty_litteral_mode = false;
|
||
|
||
Prism.languages.smarty = Prism.languages.extend('markup', {
|
||
'smarty': {
|
||
pattern: smarty_pattern,
|
||
inside: {
|
||
'delimiter': {
|
||
pattern: /^\{|\}$/i,
|
||
alias: 'punctuation'
|
||
},
|
||
'string': /(["'])(?:\\?.)*?\1/,
|
||
'number': /\b-?(?:0x[\dA-Fa-f]+|\d*\.?\d+(?:[Ee][-+]?\d+)?)\b/,
|
||
'variable': [
|
||
/\$(?!\d)\w+/,
|
||
/#(?!\d)\w+#/,
|
||
{
|
||
pattern: /(\.|->)(?!\d)\w+/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(\[)(?!\d)\w+(?=\])/,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'function': [
|
||
{
|
||
pattern: /(\|\s*)@?(?!\d)\w+/,
|
||
lookbehind: true
|
||
},
|
||
/^\/?(?!\d)\w+/,
|
||
/(?!\d)\w+(?=\()/
|
||
],
|
||
'attr-name': {
|
||
// Value is made optional because it may have already been tokenized
|
||
pattern: /\w+\s*=\s*(?:(?!\d)\w+)?/,
|
||
inside: {
|
||
"variable": {
|
||
pattern: /(=\s*)(?!\d)\w+/,
|
||
lookbehind: true
|
||
},
|
||
"operator": /=/
|
||
}
|
||
},
|
||
'punctuation': [
|
||
/[\[\]().,:`]|\->/
|
||
],
|
||
'operator': [
|
||
/[+\-*\/%]|==?=?|[!<>]=?|&&|\|\|?/,
|
||
/\bis\s+(?:not\s+)?(?:div|even|odd)(?:\s+by)?\b/,
|
||
/\b(?:eq|neq?|gt|lt|gt?e|lt?e|not|mod|or|and)\b/
|
||
],
|
||
'keyword': /\b(?:false|off|on|no|true|yes)\b/
|
||
}
|
||
}
|
||
});
|
||
|
||
// Comments are inserted at top so that they can
|
||
// surround markup
|
||
Prism.languages.insertBefore('smarty', 'tag', {
|
||
'smarty-comment': {
|
||
pattern: /\{\*[\s\S]*?\*\}/,
|
||
alias: ['smarty','comment']
|
||
}
|
||
});
|
||
|
||
// Tokenize all inline Smarty expressions
|
||
Prism.hooks.add('before-highlight', function(env) {
|
||
if (env.language !== 'smarty') {
|
||
return;
|
||
}
|
||
|
||
env.tokenStack = [];
|
||
|
||
env.backupCode = env.code;
|
||
env.code = env.code.replace(smarty_pattern, function(match) {
|
||
|
||
// Smarty tags inside {literal} block are ignored
|
||
if(match === smarty_litteral_end) {
|
||
smarty_litteral_mode = false;
|
||
}
|
||
|
||
if(!smarty_litteral_mode) {
|
||
if(match === smarty_litteral_start) {
|
||
smarty_litteral_mode = true;
|
||
}
|
||
|
||
var i = env.tokenStack.length;
|
||
// Check for existing strings
|
||
while (env.backupCode.indexOf('___SMARTY' + i + '___') !== -1)
|
||
++i;
|
||
|
||
// Create a sparse array
|
||
env.tokenStack[i] = match;
|
||
|
||
return '___SMARTY' + i + '___';
|
||
}
|
||
return match;
|
||
});
|
||
});
|
||
|
||
// Restore env.code for other plugins (e.g. line-numbers)
|
||
Prism.hooks.add('before-insert', function(env) {
|
||
if (env.language === 'smarty') {
|
||
env.code = env.backupCode;
|
||
delete env.backupCode;
|
||
}
|
||
});
|
||
|
||
// Re-insert the tokens after highlighting
|
||
// and highlight them with defined grammar
|
||
Prism.hooks.add('after-highlight', function(env) {
|
||
if (env.language !== 'smarty') {
|
||
return;
|
||
}
|
||
|
||
for (var i = 0, keys = Object.keys(env.tokenStack); i < keys.length; ++i) {
|
||
var k = keys[i];
|
||
var t = env.tokenStack[k];
|
||
|
||
// The replace prevents $$, $&, $`, $', $n, $nn from being interpreted as special patterns
|
||
env.highlightedCode = env.highlightedCode.replace('___SMARTY' + k + '___', Prism.highlight(t, env.grammar, 'smarty').replace(/\$/g, '$$$$'));
|
||
}
|
||
|
||
env.element.innerHTML = env.highlightedCode;
|
||
});
|
||
|
||
}(Prism));
|
||
Prism.languages.sql= {
|
||
'comment': {
|
||
pattern: /(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:--|\/\/|#).*)/,
|
||
lookbehind: true
|
||
},
|
||
'string' : {
|
||
pattern: /(^|[^@\\])("|')(?:\\?[\s\S])*?\2/,
|
||
greedy: true,
|
||
lookbehind: true
|
||
},
|
||
'variable': /@[\w.$]+|@("|'|`)(?:\\?[\s\S])+?\1/,
|
||
'function': /\b(?:COUNT|SUM|AVG|MIN|MAX|FIRST|LAST|UCASE|LCASE|MID|LEN|ROUND|NOW|FORMAT)(?=\s*\()/i, // Should we highlight user defined functions too?
|
||
'keyword': /\b(?:ACTION|ADD|AFTER|ALGORITHM|ALL|ALTER|ANALYZE|ANY|APPLY|AS|ASC|AUTHORIZATION|AUTO_INCREMENT|BACKUP|BDB|BEGIN|BERKELEYDB|BIGINT|BINARY|BIT|BLOB|BOOL|BOOLEAN|BREAK|BROWSE|BTREE|BULK|BY|CALL|CASCADED?|CASE|CHAIN|CHAR VARYING|CHARACTER (?:SET|VARYING)|CHARSET|CHECK|CHECKPOINT|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMN|COLUMNS|COMMENT|COMMIT|COMMITTED|COMPUTE|CONNECT|CONSISTENT|CONSTRAINT|CONTAINS|CONTAINSTABLE|CONTINUE|CONVERT|CREATE|CROSS|CURRENT(?:_DATE|_TIME|_TIMESTAMP|_USER)?|CURSOR|DATA(?:BASES?)?|DATE(?:TIME)?|DBCC|DEALLOCATE|DEC|DECIMAL|DECLARE|DEFAULT|DEFINER|DELAYED|DELETE|DELIMITER(?:S)?|DENY|DESC|DESCRIBE|DETERMINISTIC|DISABLE|DISCARD|DISK|DISTINCT|DISTINCTROW|DISTRIBUTED|DO|DOUBLE(?: PRECISION)?|DROP|DUMMY|DUMP(?:FILE)?|DUPLICATE KEY|ELSE|ENABLE|ENCLOSED BY|END|ENGINE|ENUM|ERRLVL|ERRORS|ESCAPE(?:D BY)?|EXCEPT|EXEC(?:UTE)?|EXISTS|EXIT|EXPLAIN|EXTENDED|FETCH|FIELDS|FILE|FILLFACTOR|FIRST|FIXED|FLOAT|FOLLOWING|FOR(?: EACH ROW)?|FORCE|FOREIGN|FREETEXT(?:TABLE)?|FROM|FULL|FUNCTION|GEOMETRY(?:COLLECTION)?|GLOBAL|GOTO|GRANT|GROUP|HANDLER|HASH|HAVING|HOLDLOCK|IDENTITY(?:_INSERT|COL)?|IF|IGNORE|IMPORT|INDEX|INFILE|INNER|INNODB|INOUT|INSERT|INT|INTEGER|INTERSECT|INTO|INVOKER|ISOLATION LEVEL|JOIN|KEYS?|KILL|LANGUAGE SQL|LAST|LEFT|LIMIT|LINENO|LINES|LINESTRING|LOAD|LOCAL|LOCK|LONG(?:BLOB|TEXT)|MATCH(?:ED)?|MEDIUM(?:BLOB|INT|TEXT)|MERGE|MIDDLEINT|MODIFIES SQL DATA|MODIFY|MULTI(?:LINESTRING|POINT|POLYGON)|NATIONAL(?: CHAR VARYING| CHARACTER(?: VARYING)?| VARCHAR)?|NATURAL|NCHAR(?: VARCHAR)?|NEXT|NO(?: SQL|CHECK|CYCLE)?|NONCLUSTERED|NULLIF|NUMERIC|OFF?|OFFSETS?|ON|OPEN(?:DATASOURCE|QUERY|ROWSET)?|OPTIMIZE|OPTION(?:ALLY)?|ORDER|OUT(?:ER|FILE)?|OVER|PARTIAL|PARTITION|PERCENT|PIVOT|PLAN|POINT|POLYGON|PRECEDING|PRECISION|PREV|PRIMARY|PRINT|PRIVILEGES|PROC(?:EDURE)?|PUBLIC|PURGE|QUICK|RAISERROR|READ(?:S SQL DATA|TEXT)?|REAL|RECONFIGURE|REFERENCES|RELEASE|RENAME|REPEATABLE|REPLICATION|REQUIRE|RESTORE|RESTRICT|RETURNS?|REVOKE|RIGHT|ROLLBACK|ROUTINE|ROW(?:COUNT|GUIDCOL|S)?|RTREE|RULE|SAVE(?:POINT)?|SCHEMA|SELECT|SERIAL(?:IZABLE)?|SESSION(?:_USER)?|SET(?:USER)?|SHARE MODE|SHOW|SHUTDOWN|SIMPLE|SMALLINT|SNAPSHOT|SOME|SONAME|START(?:ING BY)?|STATISTICS|STATUS|STRIPED|SYSTEM_USER|TABLES?|TABLESPACE|TEMP(?:ORARY|TABLE)?|TERMINATED BY|TEXT(?:SIZE)?|THEN|TIMESTAMP|TINY(?:BLOB|INT|TEXT)|TOP?|TRAN(?:SACTIONS?)?|TRIGGER|TRUNCATE|TSEQUAL|TYPES?|UNBOUNDED|UNCOMMITTED|UNDEFINED|UNION|UNIQUE|UNPIVOT|UPDATE(?:TEXT)?|USAGE|USE|USER|USING|VALUES?|VAR(?:BINARY|CHAR|CHARACTER|YING)|VIEW|WAITFOR|WARNINGS|WHEN|WHERE|WHILE|WITH(?: ROLLUP|IN)?|WORK|WRITE(?:TEXT)?)\b/i,
|
||
'boolean': /\b(?:TRUE|FALSE|NULL)\b/i,
|
||
'number': /\b-?(?:0x)?\d*\.?[\da-f]+\b/,
|
||
'operator': /[-+*\/=%^~]|&&?|\|?\||!=?|<(?:=>?|<|>)?|>[>=]?|\b(?:AND|BETWEEN|IN|LIKE|NOT|OR|IS|DIV|REGEXP|RLIKE|SOUNDS LIKE|XOR)\b/i,
|
||
'punctuation': /[;[\]()`,.]/
|
||
};
|
||
(function (Prism) {
|
||
var inside = {
|
||
'url': /url\((["']?).*?\1\)/i,
|
||
'string': {
|
||
pattern: /("|')(?:[^\\\r\n]|\\(?:\r\n|[\s\S]))*?\1/,
|
||
greedy: true
|
||
},
|
||
'interpolation': null, // See below
|
||
'func': null, // See below
|
||
'important': /\B!(?:important|optional)\b/i,
|
||
'keyword': {
|
||
pattern: /(^|\s+)(?:(?:if|else|for|return|unless)(?=\s+|$)|@[\w-]+)/,
|
||
lookbehind: true
|
||
},
|
||
'hexcode': /#[\da-f]{3,6}/i,
|
||
'number': /\b\d+(?:\.\d+)?%?/,
|
||
'boolean': /\b(?:true|false)\b/,
|
||
'operator': [
|
||
// We want non-word chars around "-" because it is
|
||
// accepted in property names.
|
||
/~|[+!\/%<>?=]=?|[-:]=|\*[*=]?|\.+|&&|\|\||\B-\B|\b(?:and|in|is(?: a| defined| not|nt)?|not|or)\b/
|
||
],
|
||
'punctuation': /[{}()\[\];:,]/
|
||
};
|
||
|
||
inside['interpolation'] = {
|
||
pattern: /\{[^\r\n}:]+\}/,
|
||
alias: 'variable',
|
||
inside: Prism.util.clone(inside)
|
||
};
|
||
inside['func'] = {
|
||
pattern: /[\w-]+\([^)]*\).*/,
|
||
inside: {
|
||
'function': /^[^(]+/,
|
||
rest: Prism.util.clone(inside)
|
||
}
|
||
};
|
||
|
||
Prism.languages.stylus = {
|
||
'comment': {
|
||
pattern: /(^|[^\\])(\/\*[\s\S]*?\*\/|\/\/.*)/,
|
||
lookbehind: true
|
||
},
|
||
'atrule-declaration': {
|
||
pattern: /(^\s*)@.+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'atrule': /^@[\w-]+/,
|
||
rest: inside
|
||
}
|
||
},
|
||
'variable-declaration': {
|
||
pattern: /(^[ \t]*)[\w$-]+\s*.?=[ \t]*(?:(?:\{[^}]*\}|.+)|$)/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'variable': /^\S+/,
|
||
rest: inside
|
||
}
|
||
},
|
||
|
||
'statement': {
|
||
pattern: /(^[ \t]*)(?:if|else|for|return|unless)[ \t]+.+/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
keyword: /^\S+/,
|
||
rest: inside
|
||
}
|
||
},
|
||
|
||
// A property/value pair cannot end with a comma or a brace
|
||
// It cannot have indented content unless it ended with a semicolon
|
||
'property-declaration': {
|
||
pattern: /((?:^|\{)([ \t]*))(?:[\w-]|\{[^}\r\n]+\})+(?:\s*:\s*|[ \t]+)[^{\r\n]*(?:;|[^{\r\n,](?=$)(?!(\r?\n|\r)(?:\{|\2[ \t]+)))/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'property': {
|
||
pattern: /^[^\s:]+/,
|
||
inside: {
|
||
'interpolation': inside.interpolation
|
||
}
|
||
},
|
||
rest: inside
|
||
}
|
||
},
|
||
|
||
|
||
|
||
// A selector can contain parentheses only as part of a pseudo-element
|
||
// It can span multiple lines.
|
||
// It must end with a comma or an accolade or have indented content.
|
||
'selector': {
|
||
pattern: /(^[ \t]*)(?:(?=\S)(?:[^{}\r\n:()]|::?[\w-]+(?:\([^)\r\n]*\))?|\{[^}\r\n]+\})+)(?:(?:\r?\n|\r)(?:\1(?:(?=\S)(?:[^{}\r\n:()]|::?[\w-]+(?:\([^)\r\n]*\))?|\{[^}\r\n]+\})+)))*(?:,$|\{|(?=(?:\r?\n|\r)(?:\{|\1[ \t]+)))/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'interpolation': inside.interpolation,
|
||
'punctuation': /[{},]/
|
||
}
|
||
},
|
||
|
||
'func': inside.func,
|
||
'string': inside.string,
|
||
'interpolation': inside.interpolation,
|
||
'punctuation': /[{}()\[\];:.]/
|
||
};
|
||
}(Prism));
|
||
// issues: nested multiline comments
|
||
Prism.languages.swift = Prism.languages.extend('clike', {
|
||
'string': {
|
||
pattern: /("|')(\\(?:\((?:[^()]|\([^)]+\))+\)|\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
||
greedy: true,
|
||
inside: {
|
||
'interpolation': {
|
||
pattern: /\\\((?:[^()]|\([^)]+\))+\)/,
|
||
inside: {
|
||
delimiter: {
|
||
pattern: /^\\\(|\)$/,
|
||
alias: 'variable'
|
||
}
|
||
// See rest below
|
||
}
|
||
}
|
||
}
|
||
},
|
||
'keyword': /\b(as|associativity|break|case|catch|class|continue|convenience|default|defer|deinit|didSet|do|dynamic(?:Type)?|else|enum|extension|fallthrough|final|for|func|get|guard|if|import|in|infix|init|inout|internal|is|lazy|left|let|mutating|new|none|nonmutating|operator|optional|override|postfix|precedence|prefix|private|Protocol|public|repeat|required|rethrows|return|right|safe|self|Self|set|static|struct|subscript|super|switch|throws?|try|Type|typealias|unowned|unsafe|var|weak|where|while|willSet|__(?:COLUMN__|FILE__|FUNCTION__|LINE__))\b/,
|
||
'number': /\b([\d_]+(\.[\de_]+)?|0x[a-f0-9_]+(\.[a-f0-9p_]+)?|0b[01_]+|0o[0-7_]+)\b/i,
|
||
'constant': /\b(nil|[A-Z_]{2,}|k[A-Z][A-Za-z_]+)\b/,
|
||
'atrule': /@\b(IB(?:Outlet|Designable|Action|Inspectable)|class_protocol|exported|noreturn|NS(?:Copying|Managed)|objc|UIApplicationMain|auto_closure)\b/,
|
||
'builtin': /\b([A-Z]\S+|abs|advance|alignof(?:Value)?|assert|contains|count(?:Elements)?|debugPrint(?:ln)?|distance|drop(?:First|Last)|dump|enumerate|equal|filter|find|first|getVaList|indices|isEmpty|join|last|lexicographicalCompare|map|max(?:Element)?|min(?:Element)?|numericCast|overlaps|partition|print(?:ln)?|reduce|reflect|reverse|sizeof(?:Value)?|sort(?:ed)?|split|startsWith|stride(?:of(?:Value)?)?|suffix|swap|toDebugString|toString|transcode|underestimateCount|unsafeBitCast|with(?:ExtendedLifetime|Unsafe(?:MutablePointers?|Pointers?)|VaList))\b/
|
||
});
|
||
Prism.languages.swift['string'].inside['interpolation'].inside.rest = Prism.util.clone(Prism.languages.swift);
|
||
Prism.languages.tcl = {
|
||
'comment': {
|
||
pattern: /(^|[^\\])#.*/,
|
||
lookbehind: true
|
||
},
|
||
'string': {
|
||
pattern: /"(?:[^"\\\r\n]|\\(?:\r\n|[\s\S]))*"/,
|
||
greedy: true
|
||
},
|
||
'variable': [
|
||
{
|
||
pattern: /(\$)(?:::)?(?:[a-zA-Z0-9]+::)*[a-zA-Z0-9_]+/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(\$){[^}]+}/,
|
||
lookbehind: true
|
||
},
|
||
{
|
||
pattern: /(^\s*set[ \t]+)(?:::)?(?:[a-zA-Z0-9]+::)*[a-zA-Z0-9_]+/m,
|
||
lookbehind: true
|
||
}
|
||
],
|
||
'function': {
|
||
pattern: /(^\s*proc[ \t]+)[^\s]+/m,
|
||
lookbehind: true
|
||
},
|
||
'builtin': [
|
||
{
|
||
pattern: /(^\s*)(?:proc|return|class|error|eval|exit|for|foreach|if|switch|while|break|continue)\b/m,
|
||
lookbehind: true
|
||
},
|
||
/\b(elseif|else)\b/
|
||
],
|
||
'scope': {
|
||
pattern: /(^\s*)(global|upvar|variable)\b/m,
|
||
lookbehind: true,
|
||
alias: 'constant'
|
||
},
|
||
'keyword': {
|
||
pattern: /(^\s*|\[)(after|append|apply|array|auto_(?:execok|import|load|mkindex|qualify|reset)|automkindex_old|bgerror|binary|catch|cd|chan|clock|close|concat|dde|dict|encoding|eof|exec|expr|fblocked|fconfigure|fcopy|file(?:event|name)?|flush|gets|glob|history|http|incr|info|interp|join|lappend|lassign|lindex|linsert|list|llength|load|lrange|lrepeat|lreplace|lreverse|lsearch|lset|lsort|math(?:func|op)|memory|msgcat|namespace|open|package|parray|pid|pkg_mkIndex|platform|puts|pwd|re_syntax|read|refchan|regexp|registry|regsub|rename|Safe_Base|scan|seek|set|socket|source|split|string|subst|Tcl|tcl(?:_endOfWord|_findLibrary|startOf(?:Next|Previous)Word|wordBreak(?:After|Before)|test|vars)|tell|time|tm|trace|unknown|unload|unset|update|uplevel|vwait)\b/m,
|
||
lookbehind: true
|
||
},
|
||
'operator': /!=?|\*\*?|==|&&?|\|\|?|<[=<]?|>[=>]?|[-+~\/%?^]|\b(?:eq|ne|in|ni)\b/,
|
||
'punctuation': /[{}()\[\]]/
|
||
};
|
||
|
||
(function(Prism) {
|
||
// We don't allow for pipes inside parentheses
|
||
// to not break table pattern |(. foo |). bar |
|
||
var modifierRegex = '(?:\\([^|)]+\\)|\\[[^\\]]+\\]|\\{[^}]+\\})+';
|
||
var modifierTokens = {
|
||
'css': {
|
||
pattern: /\{[^}]+\}/,
|
||
inside: {
|
||
rest: Prism.languages.css
|
||
}
|
||
},
|
||
'class-id': {
|
||
pattern: /(\()[^)]+(?=\))/,
|
||
lookbehind: true,
|
||
alias: 'attr-value'
|
||
},
|
||
'lang': {
|
||
pattern: /(\[)[^\]]+(?=\])/,
|
||
lookbehind: true,
|
||
alias: 'attr-value'
|
||
},
|
||
// Anything else is punctuation (the first pattern is for row/col spans inside tables)
|
||
'punctuation': /[\\\/]\d+|\S/
|
||
};
|
||
|
||
|
||
Prism.languages.textile = Prism.languages.extend('markup', {
|
||
'phrase': {
|
||
pattern: /(^|\r|\n)\S[\s\S]*?(?=$|\r?\n\r?\n|\r\r)/,
|
||
lookbehind: true,
|
||
inside: {
|
||
|
||
// h1. Header 1
|
||
'block-tag': {
|
||
pattern: RegExp('^[a-z]\\w*(?:' + modifierRegex + '|[<>=()])*\\.'),
|
||
inside: {
|
||
'modifier': {
|
||
pattern: RegExp('(^[a-z]\\w*)(?:' + modifierRegex + '|[<>=()])+(?=\\.)'),
|
||
lookbehind: true,
|
||
inside: Prism.util.clone(modifierTokens)
|
||
},
|
||
'tag': /^[a-z]\w*/,
|
||
'punctuation': /\.$/
|
||
}
|
||
},
|
||
|
||
// # List item
|
||
// * List item
|
||
'list': {
|
||
pattern: RegExp('^[*#]+(?:' + modifierRegex + ')?\\s+.+', 'm'),
|
||
inside: {
|
||
'modifier': {
|
||
pattern: RegExp('(^[*#]+)' + modifierRegex),
|
||
lookbehind: true,
|
||
inside: Prism.util.clone(modifierTokens)
|
||
},
|
||
'punctuation': /^[*#]+/
|
||
}
|
||
},
|
||
|
||
// | cell | cell | cell |
|
||
'table': {
|
||
// Modifiers can be applied to the row: {color:red}.|1|2|3|
|
||
// or the cell: |{color:red}.1|2|3|
|
||
pattern: RegExp('^(?:(?:' + modifierRegex + '|[<>=()^~])+\\.\\s*)?(?:\\|(?:(?:' + modifierRegex + '|[<>=()^~_]|[\\\\/]\\d+)+\\.)?[^|]*)+\\|', 'm'),
|
||
inside: {
|
||
'modifier': {
|
||
// Modifiers for rows after the first one are
|
||
// preceded by a pipe and a line feed
|
||
pattern: RegExp('(^|\\|(?:\\r?\\n|\\r)?)(?:' + modifierRegex + '|[<>=()^~_]|[\\\\/]\\d+)+(?=\\.)'),
|
||
lookbehind: true,
|
||
inside: Prism.util.clone(modifierTokens)
|
||
},
|
||
'punctuation': /\||^\./
|
||
}
|
||
},
|
||
|
||
'inline': {
|
||
pattern: RegExp('(\\*\\*|__|\\?\\?|[*_%@+\\-^~])(?:' + modifierRegex + ')?.+?\\1'),
|
||
inside: {
|
||
// Note: superscripts and subscripts are not handled specifically
|
||
|
||
// *bold*, **bold**
|
||
'bold': {
|
||
pattern: RegExp('((^\\*\\*?)(?:' + modifierRegex + ')?).+?(?=\\2)'),
|
||
lookbehind: true
|
||
},
|
||
|
||
// _italic_, __italic__
|
||
'italic': {
|
||
pattern: RegExp('((^__?)(?:' + modifierRegex + ')?).+?(?=\\2)'),
|
||
lookbehind: true
|
||
},
|
||
|
||
// ??cite??
|
||
'cite': {
|
||
pattern: RegExp('(^\\?\\?(?:' + modifierRegex + ')?).+?(?=\\?\\?)'),
|
||
lookbehind: true,
|
||
alias: 'string'
|
||
},
|
||
|
||
// @code@
|
||
'code': {
|
||
pattern: RegExp('(^@(?:' + modifierRegex + ')?).+?(?=@)'),
|
||
lookbehind: true,
|
||
alias: 'keyword'
|
||
},
|
||
|
||
// +inserted+
|
||
'inserted': {
|
||
pattern: RegExp('(^\\+(?:' + modifierRegex + ')?).+?(?=\\+)'),
|
||
lookbehind: true
|
||
},
|
||
|
||
// -deleted-
|
||
'deleted': {
|
||
pattern: RegExp('(^-(?:' + modifierRegex + ')?).+?(?=-)'),
|
||
lookbehind: true
|
||
},
|
||
|
||
// %span%
|
||
'span': {
|
||
pattern: RegExp('(^%(?:' + modifierRegex + ')?).+?(?=%)'),
|
||
lookbehind: true
|
||
},
|
||
|
||
'modifier': {
|
||
pattern: RegExp('(^\\*\\*|__|\\?\\?|[*_%@+\\-^~])' + modifierRegex),
|
||
lookbehind: true,
|
||
inside: Prism.util.clone(modifierTokens)
|
||
},
|
||
'punctuation': /[*_%?@+\-^~]+/
|
||
}
|
||
},
|
||
|
||
// [alias]http://example.com
|
||
'link-ref': {
|
||
pattern: /^\[[^\]]+\]\S+$/m,
|
||
inside: {
|
||
'string': {
|
||
pattern: /(\[)[^\]]+(?=\])/,
|
||
lookbehind: true
|
||
},
|
||
'url': {
|
||
pattern: /(\])\S+$/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /[\[\]]/
|
||
}
|
||
},
|
||
|
||
// "text":http://example.com
|
||
// "text":link-ref
|
||
'link': {
|
||
pattern: RegExp('"(?:' + modifierRegex + ')?[^"]+":.+?(?=[^\\w/]?(?:\\s|$))'),
|
||
inside: {
|
||
'text': {
|
||
pattern: RegExp('(^"(?:' + modifierRegex + ')?)[^"]+(?=")'),
|
||
lookbehind: true
|
||
},
|
||
'modifier': {
|
||
pattern: RegExp('(^")' + modifierRegex),
|
||
lookbehind: true,
|
||
inside: Prism.util.clone(modifierTokens)
|
||
},
|
||
'url': {
|
||
pattern: /(:).+/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /[":]/
|
||
}
|
||
},
|
||
|
||
// !image.jpg!
|
||
// !image.jpg(Title)!:http://example.com
|
||
'image': {
|
||
pattern: RegExp('!(?:' + modifierRegex + '|[<>=()])*[^!\\s()]+(?:\\([^)]+\\))?!(?::.+?(?=[^\\w/]?(?:\\s|$)))?'),
|
||
inside: {
|
||
'source': {
|
||
pattern: RegExp('(^!(?:' + modifierRegex + '|[<>=()])*)[^!\\s()]+(?:\\([^)]+\\))?(?=!)'),
|
||
lookbehind: true,
|
||
alias: 'url'
|
||
},
|
||
'modifier': {
|
||
pattern: RegExp('(^!)(?:' + modifierRegex + '|[<>=()])+'),
|
||
lookbehind: true,
|
||
inside: Prism.util.clone(modifierTokens)
|
||
},
|
||
'url': {
|
||
pattern: /(:).+/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /[!:]/
|
||
}
|
||
},
|
||
|
||
// Footnote[1]
|
||
'footnote': {
|
||
pattern: /\b\[\d+\]/,
|
||
alias: 'comment',
|
||
inside: {
|
||
'punctuation': /\[|\]/
|
||
}
|
||
},
|
||
|
||
// CSS(Cascading Style Sheet)
|
||
'acronym': {
|
||
pattern: /\b[A-Z\d]+\([^)]+\)/,
|
||
inside: {
|
||
'comment': {
|
||
pattern: /(\()[^)]+(?=\))/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /[()]/
|
||
}
|
||
},
|
||
|
||
// Prism(C)
|
||
'mark': {
|
||
pattern: /\b\((TM|R|C)\)/,
|
||
alias: 'comment',
|
||
inside: {
|
||
'punctuation':/[()]/
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
var nestedPatterns = {
|
||
'inline': Prism.util.clone(Prism.languages.textile['phrase'].inside['inline']),
|
||
'link': Prism.util.clone(Prism.languages.textile['phrase'].inside['link']),
|
||
'image': Prism.util.clone(Prism.languages.textile['phrase'].inside['image']),
|
||
'footnote': Prism.util.clone(Prism.languages.textile['phrase'].inside['footnote']),
|
||
'acronym': Prism.util.clone(Prism.languages.textile['phrase'].inside['acronym']),
|
||
'mark': Prism.util.clone(Prism.languages.textile['phrase'].inside['mark'])
|
||
};
|
||
|
||
// Only allow alpha-numeric HTML tags, not XML tags
|
||
Prism.languages.textile.tag.pattern = /<\/?(?!\d)[a-z0-9]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\s\S])*\1|[^\s'">=]+))?)*\s*\/?>/i;
|
||
|
||
// Allow some nesting
|
||
Prism.languages.textile['phrase'].inside['inline'].inside['bold'].inside = nestedPatterns;
|
||
Prism.languages.textile['phrase'].inside['inline'].inside['italic'].inside = nestedPatterns;
|
||
Prism.languages.textile['phrase'].inside['inline'].inside['inserted'].inside = nestedPatterns;
|
||
Prism.languages.textile['phrase'].inside['inline'].inside['deleted'].inside = nestedPatterns;
|
||
Prism.languages.textile['phrase'].inside['inline'].inside['span'].inside = nestedPatterns;
|
||
|
||
// Allow some styles inside table cells
|
||
Prism.languages.textile['phrase'].inside['table'].inside['inline'] = nestedPatterns['inline'];
|
||
Prism.languages.textile['phrase'].inside['table'].inside['link'] = nestedPatterns['link'];
|
||
Prism.languages.textile['phrase'].inside['table'].inside['image'] = nestedPatterns['image'];
|
||
Prism.languages.textile['phrase'].inside['table'].inside['footnote'] = nestedPatterns['footnote'];
|
||
Prism.languages.textile['phrase'].inside['table'].inside['acronym'] = nestedPatterns['acronym'];
|
||
Prism.languages.textile['phrase'].inside['table'].inside['mark'] = nestedPatterns['mark'];
|
||
|
||
}(Prism));
|
||
Prism.languages.twig = {
|
||
'comment': /\{#[\s\S]*?#\}/,
|
||
'tag': {
|
||
pattern: /\{\{[\s\S]*?\}\}|\{%[\s\S]*?%\}/,
|
||
inside: {
|
||
'ld': {
|
||
pattern: /^(?:\{\{\-?|\{%\-?\s*\w+)/,
|
||
inside: {
|
||
'punctuation': /^(?:\{\{|\{%)\-?/,
|
||
'keyword': /\w+/
|
||
}
|
||
},
|
||
'rd': {
|
||
pattern: /\-?(?:%\}|\}\})$/,
|
||
inside: {
|
||
'punctuation': /.*/
|
||
}
|
||
},
|
||
'string': {
|
||
pattern: /("|')(?:\\?.)*?\1/,
|
||
inside: {
|
||
'punctuation': /^['"]|['"]$/
|
||
}
|
||
},
|
||
'keyword': /\b(?:even|if|odd)\b/,
|
||
'boolean': /\b(?:true|false|null)\b/,
|
||
'number': /\b-?(?:0x[\dA-Fa-f]+|\d*\.?\d+([Ee][-+]?\d+)?)\b/,
|
||
'operator': [
|
||
{
|
||
pattern: /(\s)(?:and|b\-and|b\-xor|b\-or|ends with|in|is|matches|not|or|same as|starts with)(?=\s)/,
|
||
lookbehind: true
|
||
},
|
||
/[=<>]=?|!=|\*\*?|\/\/?|\?:?|[-+~%|]/
|
||
],
|
||
'property': /\b[a-zA-Z_][a-zA-Z0-9_]*\b/,
|
||
'punctuation': /[()\[\]{}:.,]/
|
||
}
|
||
},
|
||
|
||
// The rest can be parsed as HTML
|
||
'other': {
|
||
// We want non-blank matches
|
||
pattern: /\S(?:[\s\S]*\S)?/,
|
||
inside: Prism.languages.markup
|
||
}
|
||
};
|
||
|
||
Prism.languages.typescript = Prism.languages.extend('javascript', {
|
||
// From JavaScript Prism keyword list and TypeScript language spec: https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md#221-reserved-words
|
||
'keyword': /\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield|false|true|module|declare|constructor|string|Function|any|number|boolean|Array|enum|symbol|namespace|abstract|require|type)\b/
|
||
});
|
||
|
||
Prism.languages.ts = Prism.languages.typescript;
|
||
Prism.languages.vbnet = Prism.languages.extend("basic", {
|
||
'keyword': /(?:\b(?:ADDHANDLER|ADDRESSOF|ALIAS|AND|ANDALSO|AS|BEEP|BLOAD|BOOLEAN|BSAVE|BYREF|BYTE|BYVAL|CALL(?: ABSOLUTE)?|CASE|CATCH|CBOOL|CBYTE|CCHAR|CDATE|CDEC|CDBL|CHAIN|CHAR|CHDIR|CINT|CLASS|CLEAR|CLNG|CLOSE|CLS|COBJ|COM|COMMON|CONST|CONTINUE|CSBYTE|CSHORT|CSNG|CSTR|CTYPE|CUINT|CULNG|CUSHORT|DATA|DATE|DECIMAL|DECLARE|DEFAULT|DEF(?: FN| SEG|DBL|INT|LNG|SNG|STR)|DELEGATE|DIM|DIRECTCAST|DO|DOUBLE|ELSE|ELSEIF|END|ENUM|ENVIRON|ERASE|ERROR|EVENT|EXIT|FALSE|FIELD|FILES|FINALLY|FOR(?: EACH)?|FRIEND|FUNCTION|GET|GETTYPE|GETXMLNAMESPACE|GLOBAL|GOSUB|GOTO|HANDLES|IF|IMPLEMENTS|IMPORTS|IN|INHERITS|INPUT|INTEGER|INTERFACE|IOCTL|IS|ISNOT|KEY|KILL|LINE INPUT|LET|LIB|LIKE|LOCATE|LOCK|LONG|LOOP|LSET|ME|MKDIR|MOD|MODULE|MUSTINHERIT|MUSTOVERRIDE|MYBASE|MYCLASS|NAME|NAMESPACE|NARROWING|NEW|NEXT|NOT|NOTHING|NOTINHERITABLE|NOTOVERRIDABLE|OBJECT|OF|OFF|ON(?: COM| ERROR| KEY| TIMER)?|OPERATOR|OPEN|OPTION(?: BASE)?|OPTIONAL|OR|ORELSE|OUT|OVERLOADS|OVERRIDABLE|OVERRIDES|PARAMARRAY|PARTIAL|POKE|PRIVATE|PROPERTY|PROTECTED|PUBLIC|PUT|RAISEEVENT|READ|READONLY|REDIM|REM|REMOVEHANDLER|RESTORE|RESUME|RETURN|RMDIR|RSET|RUN|SBYTE|SELECT(?: CASE)?|SET|SHADOWS|SHARED|SHORT|SINGLE|SHELL|SLEEP|STATIC|STEP|STOP|STRING|STRUCTURE|SUB|SYNCLOCK|SWAP|SYSTEM|THEN|THROW|TIMER|TO|TROFF|TRON|TRUE|TRY|TRYCAST|TYPE|TYPEOF|UINTEGER|ULONG|UNLOCK|UNTIL|USHORT|USING|VIEW PRINT|WAIT|WEND|WHEN|WHILE|WIDENING|WITH|WITHEVENTS|WRITE|WRITEONLY|XOR)|\B(?:#CONST|#ELSE|#ELSEIF|#END|#IF))(?:\$|\b)/i,
|
||
'comment': [
|
||
{
|
||
pattern: /(?:!|REM\b).+/i,
|
||
inside: {
|
||
'keyword': /^REM/i
|
||
}
|
||
},
|
||
{
|
||
pattern: /(^|[^\\:])'.*/,
|
||
lookbehind: true
|
||
}
|
||
]
|
||
});
|
||
|
||
Prism.languages.verilog = {
|
||
'comment': /\/\/.*|\/\*[\s\S]*?\*\//,
|
||
'string': {
|
||
pattern: /"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,
|
||
greedy: true
|
||
},
|
||
// support for any kernel function (ex: $display())
|
||
'property': /\B\$\w+\b/,
|
||
// support for user defined constants (ex: `define)
|
||
'constant': /\B`\w+\b/,
|
||
'function': /[a-z\d_]+(?=\()/i,
|
||
// support for verilog and system verilog keywords
|
||
'keyword': /\b(?:alias|and|assert|assign|assume|automatic|before|begin|bind|bins|binsof|bit|break|buf|bufif0|bufif1|byte|class|case|casex|casez|cell|chandle|clocking|cmos|config|const|constraint|context|continue|cover|covergroup|coverpoint|cross|deassign|default|defparam|design|disable|dist|do|edge|else|end|endcase|endclass|endclocking|endconfig|endfunction|endgenerate|endgroup|endinterface|endmodule|endpackage|endprimitive|endprogram|endproperty|endspecify|endsequence|endtable|endtask|enum|event|expect|export|extends|extern|final|first_match|for|force|foreach|forever|fork|forkjoin|function|generate|genvar|highz0|highz1|if|iff|ifnone|ignore_bins|illegal_bins|import|incdir|include|initial|inout|input|inside|instance|int|integer|interface|intersect|join|join_any|join_none|large|liblist|library|local|localparam|logic|longint|macromodule|matches|medium|modport|module|nand|negedge|new|nmos|nor|noshowcancelled|not|notif0|notif1|null|or|output|package|packed|parameter|pmos|posedge|primitive|priority|program|property|protected|pull0|pull1|pulldown|pullup|pulsestyle_onevent|pulsestyle_ondetect|pure|rand|randc|randcase|randsequence|rcmos|real|realtime|ref|reg|release|repeat|return|rnmos|rpmos|rtran|rtranif0|rtranif1|scalared|sequence|shortint|shortreal|showcancelled|signed|small|solve|specify|specparam|static|string|strong0|strong1|struct|super|supply0|supply1|table|tagged|task|this|throughout|time|timeprecision|timeunit|tran|tranif0|tranif1|tri|tri0|tri1|triand|trior|trireg|type|typedef|union|unique|unsigned|use|uwire|var|vectored|virtual|void|wait|wait_order|wand|weak0|weak1|while|wildcard|wire|with|within|wor|xnor|xor)\b/,
|
||
// bold highlighting for all verilog and system verilog logic blocks
|
||
'important': /\b(?:always_latch|always_comb|always_ff|always)\b ?@?/,
|
||
// support for time ticks, vectors, and real numbers
|
||
'number': /\B##?\d+|(?:\b\d+)?'[odbh] ?[\da-fzx_?]+|\b\d*[._]?\d+(?:e[-+]?\d+)?/i,
|
||
'operator': /[-+{}^~%*\/?=!<>&|]+/,
|
||
'punctuation': /[[\];(),.:]/
|
||
};
|
||
Prism.languages.vhdl = {
|
||
'comment': /--.+/,
|
||
// support for all logic vectors
|
||
'vhdl-vectors': {
|
||
'pattern': /\b[oxb]"[\da-f_]+"|"[01uxzwlh-]+"/i,
|
||
'alias': 'number'
|
||
},
|
||
// support for operator overloading included
|
||
'quoted-function': {
|
||
pattern: /"\S+?"(?=\()/,
|
||
alias: 'function'
|
||
},
|
||
'string': /"(?:[^\\\r\n]|\\?(?:\r\n|[\s\S]))*?"/,
|
||
'constant': /\b(?:use|library)\b/i,
|
||
// support for predefined attributes included
|
||
'keyword': /\b(?:'active|'ascending|'base|'delayed|'driving|'driving_value|'event|'high|'image|'instance_name|'last_active|'last_event|'last_value|'left|'leftof|'length|'low|'path_name|'pos|'pred|'quiet|'range|'reverse_range|'right|'rightof|'simple_name|'stable|'succ|'transaction|'val|'value|access|after|alias|all|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|new|next|null|of|on|open|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|report|return|select|severity|shared|signal|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with)\b/i,
|
||
'boolean': /\b(?:true|false)\b/i,
|
||
'function': /[a-z0-9_]+(?=\()/i,
|
||
// decimal, based, physical, and exponential numbers supported
|
||
'number': /'[01uxzwlh-]'|\b(?:\d+#[\da-f_.]+#|\d[\d_.]*)(?:e[-+]?\d+)?/i,
|
||
'operator': /[<>]=?|:=|[-+*/&=]|\b(?:abs|not|mod|rem|sll|srl|sla|sra|rol|ror|and|or|nand|xnor|xor|nor)\b/i,
|
||
'punctuation': /[{}[\];(),.:]/
|
||
};
|
||
|
||
Prism.languages.vim = {
|
||
'string': /"(?:[^"\\\r\n]|\\.)*"|'(?:[^'\r\n]|'')*'/,
|
||
'comment': /".*/,
|
||
'function': /\w+(?=\()/,
|
||
'keyword': /\b(?:ab|abbreviate|abc|abclear|abo|aboveleft|al|all|arga|argadd|argd|argdelete|argdo|arge|argedit|argg|argglobal|argl|arglocal|ar|args|argu|argument|as|ascii|bad|badd|ba|ball|bd|bdelete|be|bel|belowright|bf|bfirst|bl|blast|bm|bmodified|bn|bnext|bN|bNext|bo|botright|bp|bprevious|brea|break|breaka|breakadd|breakd|breakdel|breakl|breaklist|br|brewind|bro|browse|bufdo|b|buffer|buffers|bun|bunload|bw|bwipeout|ca|cabbrev|cabc|cabclear|caddb|caddbuffer|cad|caddexpr|caddf|caddfile|cal|call|cat|catch|cb|cbuffer|cc|ccl|cclose|cd|ce|center|cex|cexpr|cf|cfile|cfir|cfirst|cgetb|cgetbuffer|cgete|cgetexpr|cg|cgetfile|c|change|changes|chd|chdir|che|checkpath|checkt|checktime|cla|clast|cl|clist|clo|close|cmapc|cmapclear|cnew|cnewer|cn|cnext|cN|cNext|cnf|cnfile|cNfcNfile|cnorea|cnoreabbrev|col|colder|colo|colorscheme|comc|comclear|comp|compiler|conf|confirm|con|continue|cope|copen|co|copy|cpf|cpfile|cp|cprevious|cq|cquit|cr|crewind|cuna|cunabbrev|cu|cunmap|cw|cwindow|debugg|debuggreedy|delc|delcommand|d|delete|delf|delfunction|delm|delmarks|diffg|diffget|diffoff|diffpatch|diffpu|diffput|diffsplit|diffthis|diffu|diffupdate|dig|digraphs|di|display|dj|djump|dl|dlist|dr|drop|ds|dsearch|dsp|dsplit|earlier|echoe|echoerr|echom|echomsg|echon|e|edit|el|else|elsei|elseif|em|emenu|endfo|endfor|endf|endfunction|endfun|en|endif|endt|endtry|endw|endwhile|ene|enew|ex|exi|exit|exu|exusage|f|file|files|filetype|fina|finally|fin|find|fini|finish|fir|first|fix|fixdel|fo|fold|foldc|foldclose|folddoc|folddoclosed|foldd|folddoopen|foldo|foldopen|for|fu|fun|function|go|goto|gr|grep|grepa|grepadd|ha|hardcopy|h|help|helpf|helpfind|helpg|helpgrep|helpt|helptags|hid|hide|his|history|ia|iabbrev|iabc|iabclear|if|ij|ijump|il|ilist|imapc|imapclear|in|inorea|inoreabbrev|isearch|isp|isplit|iuna|iunabbrev|iu|iunmap|j|join|ju|jumps|k|keepalt|keepj|keepjumps|kee|keepmarks|laddb|laddbuffer|lad|laddexpr|laddf|laddfile|lan|language|la|last|later|lb|lbuffer|lc|lcd|lch|lchdir|lcl|lclose|let|left|lefta|leftabove|lex|lexpr|lf|lfile|lfir|lfirst|lgetb|lgetbuffer|lgete|lgetexpr|lg|lgetfile|lgr|lgrep|lgrepa|lgrepadd|lh|lhelpgrep|l|list|ll|lla|llast|lli|llist|lmak|lmake|lm|lmap|lmapc|lmapclear|lnew|lnewer|lne|lnext|lN|lNext|lnf|lnfile|lNf|lNfile|ln|lnoremap|lo|loadview|loc|lockmarks|lockv|lockvar|lol|lolder|lop|lopen|lpf|lpfile|lp|lprevious|lr|lrewind|ls|lt|ltag|lu|lunmap|lv|lvimgrep|lvimgrepa|lvimgrepadd|lw|lwindow|mak|make|ma|mark|marks|mat|match|menut|menutranslate|mk|mkexrc|mks|mksession|mksp|mkspell|mkvie|mkview|mkv|mkvimrc|mod|mode|m|move|mzf|mzfile|mz|mzscheme|nbkey|new|n|next|N|Next|nmapc|nmapclear|noh|nohlsearch|norea|noreabbrev|nu|number|nun|nunmap|omapc|omapclear|on|only|o|open|opt|options|ou|ounmap|pc|pclose|ped|pedit|pe|perl|perld|perldo|po|pop|popu|popu|popup|pp|ppop|pre|preserve|prev|previous|p|print|P|Print|profd|profdel|prof|profile|promptf|promptfind|promptr|promptrepl|ps|psearch|pta|ptag|ptf|ptfirst|ptj|ptjump|ptl|ptlast|ptn|ptnext|ptN|ptNext|ptp|ptprevious|ptr|ptrewind|pts|ptselect|pu|put|pw|pwd|pyf|pyfile|py|python|qa|qall|q|quit|quita|quitall|r|read|rec|recover|redi|redir|red|redo|redr|redraw|redraws|redrawstatus|reg|registers|res|resize|ret|retab|retu|return|rew|rewind|ri|right|rightb|rightbelow|rub|ruby|rubyd|rubydo|rubyf|rubyfile|ru|runtime|rv|rviminfo|sal|sall|san|sandbox|sa|sargument|sav|saveas|sba|sball|sbf|sbfirst|sbl|sblast|sbm|sbmodified|sbn|sbnext|sbN|sbNext|sbp|sbprevious|sbr|sbrewind|sb|sbuffer|scripte|scriptencoding|scrip|scriptnames|se|set|setf|setfiletype|setg|setglobal|setl|setlocal|sf|sfind|sfir|sfirst|sh|shell|sign|sil|silent|sim|simalt|sla|slast|sl|sleep|sm|smagic|sm|smap|smapc|smapclear|sme|smenu|sn|snext|sN|sNext|sni|sniff|sno|snomagic|snor|snoremap|snoreme|snoremenu|sor|sort|so|source|spelld|spelldump|spe|spellgood|spelli|spellinfo|spellr|spellrepall|spellu|spellundo|spellw|spellwrong|sp|split|spr|sprevious|sre|srewind|sta|stag|startg|startgreplace|star|startinsert|startr|startreplace|stj|stjump|st|stop|stopi|stopinsert|sts|stselect|sun|sunhide|sunm|sunmap|sus|suspend|sv|sview|syncbind|t|tab|tabc|tabclose|tabd|tabdo|tabe|tabedit|tabf|tabfind|tabfir|tabfirst|tabl|tablast|tabm|tabmove|tabnew|tabn|tabnext|tabN|tabNext|tabo|tabonly|tabp|tabprevious|tabr|tabrewind|tabs|ta|tag|tags|tc|tcl|tcld|tcldo|tclf|tclfile|te|tearoff|tf|tfirst|th|throw|tj|tjump|tl|tlast|tm|tm|tmenu|tn|tnext|tN|tNext|to|topleft|tp|tprevious|tr|trewind|try|ts|tselect|tu|tu|tunmenu|una|unabbreviate|u|undo|undoj|undojoin|undol|undolist|unh|unhide|unlet|unlo|unlockvar|unm|unmap|up|update|verb|verbose|ve|version|vert|vertical|vie|view|vim|vimgrep|vimgrepa|vimgrepadd|vi|visual|viu|viusage|vmapc|vmapclear|vne|vnew|vs|vsplit|vu|vunmap|wa|wall|wh|while|winc|wincmd|windo|winp|winpos|win|winsize|wn|wnext|wN|wNext|wp|wprevious|wq|wqa|wqall|w|write|ws|wsverb|wv|wviminfo|X|xa|xall|x|xit|xm|xmap|xmapc|xmapclear|xme|xmenu|XMLent|XMLns|xn|xnoremap|xnoreme|xnoremenu|xu|xunmap|y|yank)\b/,
|
||
'builtin': /\b(?:autocmd|acd|ai|akm|aleph|allowrevins|altkeymap|ambiwidth|ambw|anti|antialias|arab|arabic|arabicshape|ari|arshape|autochdir|autoindent|autoread|autowrite|autowriteall|aw|awa|background|backspace|backup|backupcopy|backupdir|backupext|backupskip|balloondelay|ballooneval|balloonexpr|bdir|bdlay|beval|bex|bexpr|bg|bh|bin|binary|biosk|bioskey|bk|bkc|bomb|breakat|brk|browsedir|bs|bsdir|bsk|bt|bufhidden|buflisted|buftype|casemap|ccv|cdpath|cedit|cfu|ch|charconvert|ci|cin|cindent|cink|cinkeys|cino|cinoptions|cinw|cinwords|clipboard|cmdheight|cmdwinheight|cmp|cms|columns|com|comments|commentstring|compatible|complete|completefunc|completeopt|consk|conskey|copyindent|cot|cpo|cpoptions|cpt|cscopepathcomp|cscopeprg|cscopequickfix|cscopetag|cscopetagorder|cscopeverbose|cspc|csprg|csqf|cst|csto|csverb|cuc|cul|cursorcolumn|cursorline|cwh|debug|deco|def|define|delcombine|dex|dg|dict|dictionary|diff|diffexpr|diffopt|digraph|dip|dir|directory|dy|ea|ead|eadirection|eb|ed|edcompatible|ef|efm|ei|ek|enc|encoding|endofline|eol|ep|equalalways|equalprg|errorbells|errorfile|errorformat|esckeys|et|eventignore|expandtab|exrc|fcl|fcs|fdc|fde|fdi|fdl|fdls|fdm|fdn|fdo|fdt|fen|fenc|fencs|fex|ff|ffs|fileencoding|fileencodings|fileformat|fileformats|fillchars|fk|fkmap|flp|fml|fmr|foldcolumn|foldenable|foldexpr|foldignore|foldlevel|foldlevelstart|foldmarker|foldmethod|foldminlines|foldnestmax|foldtext|formatexpr|formatlistpat|formatoptions|formatprg|fp|fs|fsync|ft|gcr|gd|gdefault|gfm|gfn|gfs|gfw|ghr|gp|grepformat|grepprg|gtl|gtt|guicursor|guifont|guifontset|guifontwide|guiheadroom|guioptions|guipty|guitablabel|guitabtooltip|helpfile|helpheight|helplang|hf|hh|hi|hidden|highlight|hk|hkmap|hkmapp|hkp|hl|hlg|hls|hlsearch|ic|icon|iconstring|ignorecase|im|imactivatekey|imak|imc|imcmdline|imd|imdisable|imi|iminsert|ims|imsearch|inc|include|includeexpr|incsearch|inde|indentexpr|indentkeys|indk|inex|inf|infercase|insertmode|isf|isfname|isi|isident|isk|iskeyword|isprint|joinspaces|js|key|keymap|keymodel|keywordprg|km|kmp|kp|langmap|langmenu|laststatus|lazyredraw|lbr|lcs|linebreak|lines|linespace|lisp|lispwords|listchars|loadplugins|lpl|lsp|lz|macatsui|magic|makeef|makeprg|matchpairs|matchtime|maxcombine|maxfuncdepth|maxmapdepth|maxmem|maxmempattern|maxmemtot|mco|mef|menuitems|mfd|mh|mis|mkspellmem|ml|mls|mm|mmd|mmp|mmt|modeline|modelines|modifiable|modified|more|mouse|mousef|mousefocus|mousehide|mousem|mousemodel|mouses|mouseshape|mouset|mousetime|mp|mps|msm|mzq|mzquantum|nf|nrformats|numberwidth|nuw|odev|oft|ofu|omnifunc|opendevice|operatorfunc|opfunc|osfiletype|pa|para|paragraphs|paste|pastetoggle|patchexpr|patchmode|path|pdev|penc|pex|pexpr|pfn|ph|pheader|pi|pm|pmbcs|pmbfn|popt|preserveindent|previewheight|previewwindow|printdevice|printencoding|printexpr|printfont|printheader|printmbcharset|printmbfont|printoptions|prompt|pt|pumheight|pvh|pvw|qe|quoteescape|readonly|remap|report|restorescreen|revins|rightleft|rightleftcmd|rl|rlc|ro|rs|rtp|ruf|ruler|rulerformat|runtimepath|sbo|sc|scb|scr|scroll|scrollbind|scrolljump|scrolloff|scrollopt|scs|sect|sections|secure|sel|selection|selectmode|sessionoptions|sft|shcf|shellcmdflag|shellpipe|shellquote|shellredir|shellslash|shelltemp|shelltype|shellxquote|shiftround|shiftwidth|shm|shortmess|shortname|showbreak|showcmd|showfulltag|showmatch|showmode|showtabline|shq|si|sidescroll|sidescrolloff|siso|sj|slm|smartcase|smartindent|smarttab|smc|smd|softtabstop|sol|spc|spell|spellcapcheck|spellfile|spelllang|spellsuggest|spf|spl|splitbelow|splitright|sps|sr|srr|ss|ssl|ssop|stal|startofline|statusline|stl|stmp|su|sua|suffixes|suffixesadd|sw|swapfile|swapsync|swb|swf|switchbuf|sws|sxq|syn|synmaxcol|syntax|tabline|tabpagemax|tabstop|tagbsearch|taglength|tagrelative|tagstack|tal|tb|tbi|tbidi|tbis|tbs|tenc|term|termbidi|termencoding|terse|textauto|textmode|textwidth|tgst|thesaurus|tildeop|timeout|timeoutlen|title|titlelen|titleold|titlestring|toolbar|toolbariconsize|top|tpm|tsl|tsr|ttimeout|ttimeoutlen|ttm|tty|ttybuiltin|ttyfast|ttym|ttymouse|ttyscroll|ttytype|tw|tx|uc|ul|undolevels|updatecount|updatetime|ut|vb|vbs|vdir|verbosefile|vfile|viewdir|viewoptions|viminfo|virtualedit|visualbell|vop|wak|warn|wb|wc|wcm|wd|weirdinvert|wfh|wfw|whichwrap|wi|wig|wildchar|wildcharm|wildignore|wildmenu|wildmode|wildoptions|wim|winaltkeys|window|winfixheight|winfixwidth|winheight|winminheight|winminwidth|winwidth|wiv|wiw|wm|wmh|wmnu|wmw|wop|wrap|wrapmargin|wrapscan|writeany|writebackup|writedelay|ww|noacd|noai|noakm|noallowrevins|noaltkeymap|noanti|noantialias|noar|noarab|noarabic|noarabicshape|noari|noarshape|noautochdir|noautoindent|noautoread|noautowrite|noautowriteall|noaw|noawa|nobackup|noballooneval|nobeval|nobin|nobinary|nobiosk|nobioskey|nobk|nobl|nobomb|nobuflisted|nocf|noci|nocin|nocindent|nocompatible|noconfirm|noconsk|noconskey|nocopyindent|nocp|nocscopetag|nocscopeverbose|nocst|nocsverb|nocuc|nocul|nocursorcolumn|nocursorline|nodeco|nodelcombine|nodg|nodiff|nodigraph|nodisable|noea|noeb|noed|noedcompatible|noek|noendofline|noeol|noequalalways|noerrorbells|noesckeys|noet|noex|noexpandtab|noexrc|nofen|nofk|nofkmap|nofoldenable|nogd|nogdefault|noguipty|nohid|nohidden|nohk|nohkmap|nohkmapp|nohkp|nohls|noic|noicon|noignorecase|noim|noimc|noimcmdline|noimd|noincsearch|noinf|noinfercase|noinsertmode|nois|nojoinspaces|nojs|nolazyredraw|nolbr|nolinebreak|nolisp|nolist|noloadplugins|nolpl|nolz|noma|nomacatsui|nomagic|nomh|noml|nomod|nomodeline|nomodifiable|nomodified|nomore|nomousef|nomousefocus|nomousehide|nonu|nonumber|noodev|noopendevice|nopaste|nopi|nopreserveindent|nopreviewwindow|noprompt|nopvw|noreadonly|noremap|norestorescreen|norevins|nori|norightleft|norightleftcmd|norl|norlc|noro|nors|noru|noruler|nosb|nosc|noscb|noscrollbind|noscs|nosecure|nosft|noshellslash|noshelltemp|noshiftround|noshortname|noshowcmd|noshowfulltag|noshowmatch|noshowmode|nosi|nosm|nosmartcase|nosmartindent|nosmarttab|nosmd|nosn|nosol|nospell|nosplitbelow|nosplitright|nospr|nosr|nossl|nosta|nostartofline|nostmp|noswapfile|noswf|nota|notagbsearch|notagrelative|notagstack|notbi|notbidi|notbs|notermbidi|noterse|notextauto|notextmode|notf|notgst|notildeop|notimeout|notitle|noto|notop|notr|nottimeout|nottybuiltin|nottyfast|notx|novb|novisualbell|nowa|nowarn|nowb|noweirdinvert|nowfh|nowfw|nowildmenu|nowinfixheight|nowinfixwidth|nowiv|nowmnu|nowrap|nowrapscan|nowrite|nowriteany|nowritebackup|nows|invacd|invai|invakm|invallowrevins|invaltkeymap|invanti|invantialias|invar|invarab|invarabic|invarabicshape|invari|invarshape|invautochdir|invautoindent|invautoread|invautowrite|invautowriteall|invaw|invawa|invbackup|invballooneval|invbeval|invbin|invbinary|invbiosk|invbioskey|invbk|invbl|invbomb|invbuflisted|invcf|invci|invcin|invcindent|invcompatible|invconfirm|invconsk|invconskey|invcopyindent|invcp|invcscopetag|invcscopeverbose|invcst|invcsverb|invcuc|invcul|invcursorcolumn|invcursorline|invdeco|invdelcombine|invdg|invdiff|invdigraph|invdisable|invea|inveb|inved|invedcompatible|invek|invendofline|inveol|invequalalways|inverrorbells|invesckeys|invet|invex|invexpandtab|invexrc|invfen|invfk|invfkmap|invfoldenable|invgd|invgdefault|invguipty|invhid|invhidden|invhk|invhkmap|invhkmapp|invhkp|invhls|invhlsearch|invic|invicon|invignorecase|invim|invimc|invimcmdline|invimd|invincsearch|invinf|invinfercase|invinsertmode|invis|invjoinspaces|invjs|invlazyredraw|invlbr|invlinebreak|invlisp|invlist|invloadplugins|invlpl|invlz|invma|invmacatsui|invmagic|invmh|invml|invmod|invmodeline|invmodifiable|invmodified|invmore|invmousef|invmousefocus|invmousehide|invnu|invnumber|invodev|invopendevice|invpaste|invpi|invpreserveindent|invpreviewwindow|invprompt|invpvw|invreadonly|invremap|invrestorescreen|invrevins|invri|invrightleft|invrightleftcmd|invrl|invrlc|invro|invrs|invru|invruler|invsb|invsc|invscb|invscrollbind|invscs|invsecure|invsft|invshellslash|invshelltemp|invshiftround|invshortname|invshowcmd|invshowfulltag|invshowmatch|invshowmode|invsi|invsm|invsmartcase|invsmartindent|invsmarttab|invsmd|invsn|invsol|invspell|invsplitbelow|invsplitright|invspr|invsr|invssl|invsta|invstartofline|invstmp|invswapfile|invswf|invta|invtagbsearch|invtagrelative|invtagstack|invtbi|invtbidi|invtbs|invtermbidi|invterse|invtextauto|invtextmode|invtf|invtgst|invtildeop|invtimeout|invtitle|invto|invtop|invtr|invttimeout|invttybuiltin|invttyfast|invtx|invvb|invvisualbell|invwa|invwarn|invwb|invweirdinvert|invwfh|invwfw|invwildmenu|invwinfixheight|invwinfixwidth|invwiv|invwmnu|invwrap|invwrapscan|invwrite|invwriteany|invwritebackup|invws|t_AB|t_AF|t_al|t_AL|t_bc|t_cd|t_ce|t_Ce|t_cl|t_cm|t_Co|t_cs|t_Cs|t_CS|t_CV|t_da|t_db|t_dl|t_DL|t_EI|t_F1|t_F2|t_F3|t_F4|t_F5|t_F6|t_F7|t_F8|t_F9|t_fs|t_IE|t_IS|t_k1|t_K1|t_k2|t_k3|t_K3|t_k4|t_K4|t_k5|t_K5|t_k6|t_K6|t_k7|t_K7|t_k8|t_K8|t_k9|t_K9|t_KA|t_kb|t_kB|t_KB|t_KC|t_kd|t_kD|t_KD|t_ke|t_KE|t_KF|t_KG|t_kh|t_KH|t_kI|t_KI|t_KJ|t_KK|t_kl|t_KL|t_kN|t_kP|t_kr|t_ks|t_ku|t_le|t_mb|t_md|t_me|t_mr|t_ms|t_nd|t_op|t_RI|t_RV|t_Sb|t_se|t_Sf|t_SI|t_so|t_sr|t_te|t_ti|t_ts|t_ue|t_us|t_ut|t_vb|t_ve|t_vi|t_vs|t_WP|t_WS|t_xs|t_ZH|t_ZR)\b/,
|
||
'number': /\b(?:0x[\da-f]+|\d+(?:\.\d+)?)\b/i,
|
||
'operator': /\|\||&&|[-+.]=?|[=!](?:[=~][#?]?)?|[<>]=?[#?]?|[*\/%?]|\b(?:is(?:not)?)\b/,
|
||
'punctuation': /[{}[\](),;:]/
|
||
};
|
||
Prism.languages.wiki = Prism.languages.extend('markup', {
|
||
'block-comment': {
|
||
pattern: /(^|[^\\])\/\*[\s\S]*?\*\//,
|
||
lookbehind: true,
|
||
alias: 'comment'
|
||
},
|
||
'heading': {
|
||
pattern: /^(=+).+?\1/m,
|
||
inside: {
|
||
'punctuation': /^=+|=+$/,
|
||
'important': /.+/
|
||
}
|
||
},
|
||
'emphasis': {
|
||
// TODO Multi-line
|
||
pattern: /('{2,5}).+?\1/,
|
||
inside: {
|
||
'bold italic': {
|
||
pattern: /(''''').+?(?=\1)/,
|
||
lookbehind: true
|
||
},
|
||
'bold': {
|
||
pattern: /(''')[^'](?:.*?[^'])?(?=\1)/,
|
||
lookbehind: true
|
||
},
|
||
'italic': {
|
||
pattern: /('')[^'](?:.*?[^'])?(?=\1)/,
|
||
lookbehind: true
|
||
},
|
||
'punctuation': /^''+|''+$/
|
||
}
|
||
},
|
||
'hr': {
|
||
pattern: /^-{4,}/m,
|
||
alias: 'punctuation'
|
||
},
|
||
'url': [
|
||
/ISBN +(?:97[89][ -]?)?(?:\d[ -]?){9}[\dx]\b|(?:RFC|PMID) +\d+/i,
|
||
/\[\[.+?\]\]|\[.+?\]/
|
||
],
|
||
'variable': [
|
||
/__[A-Z]+__/,
|
||
// FIXME Nested structures should be handled
|
||
// {{formatnum:{{#expr:{{{3}}}}}}}
|
||
/\{{3}.+?\}{3}/,
|
||
/\{\{.+?}}/
|
||
],
|
||
'symbol': [
|
||
/^#redirect/im,
|
||
/~{3,5}/
|
||
],
|
||
// Handle table attrs:
|
||
// {|
|
||
// ! style="text-align:left;"| Item
|
||
// |}
|
||
'table-tag': {
|
||
pattern: /((?:^|[|!])[|!])[^|\r\n]+\|(?!\|)/m,
|
||
lookbehind: true,
|
||
inside: {
|
||
'table-bar': {
|
||
pattern: /\|$/,
|
||
alias: 'punctuation'
|
||
},
|
||
rest: Prism.languages.markup['tag'].inside
|
||
}
|
||
},
|
||
'punctuation': /^(?:\{\||\|\}|\|-|[*#:;!|])|\|\||!!/m
|
||
});
|
||
|
||
Prism.languages.insertBefore('wiki', 'tag', {
|
||
// Prevent highlighting inside <nowiki>, <source> and <pre> tags
|
||
'nowiki': {
|
||
pattern: /<(nowiki|pre|source)\b[\s\S]*?>[\s\S]*?<\/\1>/i,
|
||
inside: {
|
||
'tag': {
|
||
pattern: /<(?:nowiki|pre|source)\b[\s\S]*?>|<\/(?:nowiki|pre|source)>/i,
|
||
inside: Prism.languages.markup['tag'].inside
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
Prism.languages.xojo = {
|
||
'comment': {
|
||
pattern: /(?:'|\/\/|Rem\b).+/i,
|
||
inside: {
|
||
'keyword': /^Rem/i
|
||
}
|
||
},
|
||
'string': {
|
||
pattern: /"(?:""|[^"])*"/,
|
||
greedy: true
|
||
},
|
||
'number': [
|
||
/(?:\b|\B[.-])(?:\d+\.?\d*)(?:E[+-]?\d+)?/i,
|
||
/&[bchou][a-z\d]+/i
|
||
],
|
||
'symbol': /#(?:If|Else|ElseIf|Endif|Pragma)\b/i,
|
||
'keyword': /\b(?:AddHandler|App|Array|As(?:signs)?|By(?:Ref|Val)|Break|Call|Case|Catch|Const|Continue|CurrentMethodName|Declare|Dim|Do(?:wnTo)?|Each|Else(?:If)?|End|Exit|Extends|False|Finally|For|Global|If|In|Lib|Loop|Me|Next|Nil|Optional|ParamArray|Raise(?:Event)?|ReDim|Rem|RemoveHandler|Return|Select|Self|Soft|Static|Step|Super|Then|To|True|Try|Ubound|Until|Using|Wend|While)\b/i,
|
||
'operator': /<[=>]?|>=?|[+\-*\/\\^=]|\b(?:AddressOf|And|Ctype|IsA?|Mod|New|Not|Or|Xor|WeakAddressOf)\b/i,
|
||
'punctuation': /[.,;:()]/
|
||
};
|
||
Prism.languages.yaml = {
|
||
'scalar': {
|
||
pattern: /([\-:]\s*(![^\s]+)?[ \t]*[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)[^\r\n]+(?:\3[^\r\n]+)*)/,
|
||
lookbehind: true,
|
||
alias: 'string'
|
||
},
|
||
'comment': /#.*/,
|
||
'key': {
|
||
pattern: /(\s*(?:^|[:\-,[{\r\n?])[ \t]*(![^\s]+)?[ \t]*)[^\r\n{[\]},#\s]+?(?=\s*:\s)/,
|
||
lookbehind: true,
|
||
alias: 'atrule'
|
||
},
|
||
'directive': {
|
||
pattern: /(^[ \t]*)%.+/m,
|
||
lookbehind: true,
|
||
alias: 'important'
|
||
},
|
||
'datetime': {
|
||
pattern: /([:\-,[{]\s*(![^\s]+)?[ \t]*)(\d{4}-\d\d?-\d\d?([tT]|[ \t]+)\d\d?:\d{2}:\d{2}(\.\d*)?[ \t]*(Z|[-+]\d\d?(:\d{2})?)?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(:\d{2}(\.\d*)?)?)(?=[ \t]*($|,|]|}))/m,
|
||
lookbehind: true,
|
||
alias: 'number'
|
||
},
|
||
'boolean': {
|
||
pattern: /([:\-,[{]\s*(![^\s]+)?[ \t]*)(true|false)[ \t]*(?=$|,|]|})/im,
|
||
lookbehind: true,
|
||
alias: 'important'
|
||
},
|
||
'null': {
|
||
pattern: /([:\-,[{]\s*(![^\s]+)?[ \t]*)(null|~)[ \t]*(?=$|,|]|})/im,
|
||
lookbehind: true,
|
||
alias: 'important'
|
||
},
|
||
'string': {
|
||
pattern: /([:\-,[{]\s*(![^\s]+)?[ \t]*)("(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')(?=[ \t]*($|,|]|}))/m,
|
||
lookbehind: true,
|
||
greedy: true
|
||
},
|
||
'number': {
|
||
pattern: /([:\-,[{]\s*(![^\s]+)?[ \t]*)[+\-]?(0x[\da-f]+|0o[0-7]+|(\d+\.?\d*|\.?\d+)(e[\+\-]?\d+)?|\.inf|\.nan)[ \t]*(?=$|,|]|})/im,
|
||
lookbehind: true
|
||
},
|
||
'tag': /![^\s]+/,
|
||
'important': /[&*][\w]+/,
|
||
'punctuation': /---|[:[\]{}\-,|>?]|\.\.\./
|
||
};
|
||
|