/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript */
var self = typeof window != "undefined" ? window : {},
Prism = (function () {
var e = /\blang(?:uage)?-(?!\*)(\w+)\b/i,
t = (self.Prism = {
util: {
encode: function (e) {
return e instanceof n
? new n(e.type, t.util.encode(e.content))
: t.util.type(e) === "Array"
? e.map(t.util.encode)
: e
.replace(/&/g, "&")
.replace(/ e.length) break e;
if (p instanceof i) continue;
a.lastIndex = 0;
var d = a.exec(p);
if (d) {
l && (c = d[1].length);
var v = d.index - 1 + c,
d = d[0].slice(c),
m = d.length,
g = v + m,
y = p.slice(0, v + 1),
b = p.slice(g + 1),
w = [h, 1];
y && w.push(y);
var E = new i(u, f ? t.tokenize(d, f) : d);
w.push(E);
b && w.push(b);
Array.prototype.splice.apply(s, w);
}
}
}
return s;
},
hooks: {
all: {},
add: function (e, n) {
var r = t.hooks.all;
r[e] = r[e] || [];
r[e].push(n);
},
run: function (e, n) {
var r = t.hooks.all[e];
if (!r || !r.length) return;
for (var i = 0, s; (s = r[i++]); ) s(n);
},
},
}),
n = (t.Token = function (e, t) {
this.type = e;
this.content = t;
});
n.stringify = function (e, r, i) {
if (typeof e == "string") return e;
if (Object.prototype.toString.call(e) == "[object Array]")
return e
.map(function (t) {
return n.stringify(t, r, e);
})
.join("");
var s = {
type: e.type,
content: n.stringify(e.content, r, i),
tag: "span",
classes: ["token", e.type],
attributes: {},
language: r,
parent: i,
};
s.type == "comment" && (s.attributes.spellcheck = "true");
t.hooks.run("wrap", s);
var o = "";
for (var u in s.attributes) o += u + '="' + (s.attributes[u] || "") + '"';
return (
"<" +
s.tag +
' class="' +
s.classes.join(" ") +
'" ' +
o +
">" +
s.content +
"" +
s.tag +
">"
);
};
if (!self.document) {
if (!self.addEventListener) return self.Prism;
self.addEventListener(
"message",
function (e) {
var n = JSON.parse(e.data),
r = n.language,
i = n.code;
self.postMessage(JSON.stringify(t.tokenize(i, t.languages[r])));
self.close();
},
!1
);
return self.Prism;
}
var r = document.getElementsByTagName("script");
r = r[r.length - 1];
if (r) {
t.filename = r.src;
document.addEventListener &&
!r.hasAttribute("data-manual") &&
document.addEventListener("DOMContentLoaded", t.highlightAll);
}
return self.Prism;
})();
typeof module != "undefined" && module.exports && (module.exports = Prism);
Prism.languages.markup = {
comment: //g,
prolog: /<\?.+?\?>/,
doctype: //,
cdata: //i,
tag: {
pattern: /<\/?[\w:-]+\s*(?:\s+[\w:-]+(?:=(?:("|')(\\?[\w\W])*?\1|[^\s'">=]+))?\s*)*\/?>/gi,
inside: {
tag: {
pattern: /^<\/?[\w:-]+/i,
inside: { punctuation: /^<\/?/, namespace: /^[\w-]+?:/ },
},
"attr-value": {
pattern: /=(?:('|")[\w\W]*?(\1)|[^\s>]+)/gi,
inside: { punctuation: /=|>|"/g },
},
punctuation: /\/?>/g,
"attr-name": { pattern: /[\w:-]+/g, inside: { namespace: /^[\w-]+?:/ } },
},
},
entity: /\?[\da-z]{1,8};/gi,
};
Prism.hooks.add("wrap", function (e) {
e.type === "entity" && (e.attributes.title = e.content.replace(/&/, "&"));
});
Prism.languages.css = {
comment: /\/\*[\w\W]*?\*\//g,
atrule: {
pattern: /@[\w-]+?.*?(;|(?=\s*{))/gi,
inside: { punctuation: /[;:]/g },
},
url: /url\((["']?).*?\1\)/gi,
selector: /[^\{\}\s][^\{\};]*(?=\s*\{)/g,
property: /(\b|\B)[\w-]+(?=\s*:)/gi,
string: /("|')(\\?.)*?\1/g,
important: /\B!important\b/gi,
punctuation: /[\{\};:]/g,
function: /[-a-z0-9]+(?=\()/gi,
};
Prism.languages.markup &&
Prism.languages.insertBefore("markup", "tag", {
style: {
pattern: /