diff --git a/astro.config.mts b/astro.config.mts index 3d0a3be..3607002 100644 --- a/astro.config.mts +++ b/astro.config.mts @@ -1,221 +1,23 @@ -// @ts-check - import { defineConfig } from "astro/config" import { SITE_URL } from "./src/consts" import vue from "@astrojs/vue" -import { visit } from "unist-util-visit" import tailwind from "@astrojs/tailwind" import react from "@astrojs/react" -import md5 from "md5" -import { type RehypePlugin } from "@astrojs/markdown-remark" -import path from "path" -import { convertImageToBase64URL } from "./src/utils/image" - -function pipeline() { - return [ - () => tree => { - visit(tree, "element", (node, index) => { - if (node.tagName === "p" && node.children[0].tagName === "img") { - node.tagName = "figure" - let img = node.children[0] - let sign = md5(img.properties.src) - let data = img.properties.alt.split("|") - let alt = data[0] - let size = "big" - if (data.length > 1) { - size = data[1] - } - let classes = ["image component image-full-bleed body-copy-wide nr-scroll-animation nr-scroll-animation--on"] - classes.push(`image-${size}`) - node.properties.className = classes - node.children = [ - { - type: "element", - tagName: "div", - properties: { - className: ["component-content"], - }, - children: [ - { - type: "element", - tagName: "div", - properties: { - className: ["image-share-sheet"], - }, - children: [ - { - type: "element", - tagName: "div", - properties: { - className: [`image image-loaded image-asset image-${sign}`], - id: `lht${sign}`, - }, - children: [ - { - type: "element", - tagName: "picture", - properties: { - className: ["picture"], - }, - children: [ - { - type: "element", - tagName: "img", - properties: { - src: img.properties.src, - alt: alt, - className: ["picture-image"], - }, - }, - ], - }, - ], - }, - ], - }, - { - type: "element", - tagName: "div", - properties: { - className: ["image-description"], - }, - children: [ - { - type: "element", - tagName: "div", - properties: { - className: ["image-caption"], - }, - children: [ - { - type: "text", - value: alt, - }, - ], - }, - ], - }, - ], - }, - ] - } - }) - }, - () => tree => { - tree.children.forEach(node => { - if (node.type === "raw") { - node.value = `
${node.value}
` - // node.value = node.value.replace(/astro-code/g, 'astro-code') - } - }) - }, - () => tree => { - for (let i = 0; i < tree.children.length; i++) { - const node = tree.children[i] - if (node.type === "element" && ["p", "h1", "h2", "h3", "h4", "h5", "h6", "table"].includes(node.tagName)) { - let next = tree.children[i + 1] - const nodes = [node] - while (next && !["figure"].includes(next.tagName) && next.type != "raw") { - nodes.push(next) - next = tree.children[tree.children.indexOf(next) + 1] - } - if (nodes.length > 1) { - // rename label - nodes.forEach(node => { - if (node.tagName === "p") { - node.properties.className = ["page-body-copy"] - node.tagName = "div" - } - if (["h1", "h2", "h3", "h4", "h5", "h6"].includes(node.tagName)) { - node.properties.className = ["page-body-header"] - } - }) - tree.children.splice(i, nodes.length, { - type: "element", - tagName: "div", - properties: { - className: ["page-body text component"], - }, - children: [ - { - type: "element", - tagName: "div", - properties: { - className: ["component-content"], - }, - children: nodes, - }, - ], - }) - } - } - } - }, - () => tree => { - const len = tree.children.length - for (let index = 0; index < len; index++) { - const node = tree.children[index] - if (node.type === "element" && node.tagName === "figure") { - tree.children.splice(index, 0, { - type: "element", - tagName: "div", - properties: { - className: ["tertiary-nav component"], - }, - children: [ - { - type: "element", - tagName: "div", - properties: { - className: ["component-content"], - }, - }, - ], - }) - index++ - } - } - }, - ] -} - -const handleLocalCoverPlugin: RehypePlugin = () => { - return async (tree, file) => { - const filePath = file.history[0] - type AstroData = { - frontmatter: { - cover: - | { - url: string - } - | string - | undefined - } - } - const astroData = file.data.astro as AstroData - if (!astroData.frontmatter.cover) { - return - } - const coverUrl = typeof astroData.frontmatter.cover === "string" ? astroData.frontmatter.cover : astroData.frontmatter.cover.url - if (coverUrl.includes("http")) { - return - } - const url = path.resolve(path.dirname(filePath), coverUrl) - const dataURL = await convertImageToBase64URL(url) - if (typeof astroData.frontmatter.cover === "string") { - astroData.frontmatter.cover = dataURL - } else { - astroData.frontmatter.cover.url = dataURL - } - } -} +import { handleLocalCoverPlugin } from "./src/plugins/cover" +import { themePipeline } from "./src/plugins/theme" // https://astro.build/config export default defineConfig({ site: SITE_URL, markdown: { - rehypePlugins: [handleLocalCoverPlugin, ...pipeline()], - syntaxHighlight: "prism", + rehypePlugins: [handleLocalCoverPlugin, ...themePipeline], + syntaxHighlight: "shiki", + shikiConfig: { + themes: { + light: 'github-light', + dark: 'github-dark', + }, + } }, integrations: [ vue(), diff --git a/cspell.json b/cspell.json index c92ee68..a9dcc08 100644 --- a/cspell.json +++ b/cspell.json @@ -19,6 +19,7 @@ "openapi", "Rehype", "rehypePlugins", + "shiki", "tseslint" ] } diff --git a/public/static/css/github-dark.min.css b/public/static/css/github-dark.min.css deleted file mode 100644 index 03b6da8..0000000 --- a/public/static/css/github-dark.min.css +++ /dev/null @@ -1,10 +0,0 @@ -pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*! - Theme: GitHub Dark - Description: Dark theme as seen on github.com - Author: github.com - Maintainer: @Hirse - Updated: 2021-05-15 - - Outdated base version: https://github.com/primer/github-syntax-dark - Current colors taken from GitHub's CSS -*/.hljs{color:#c9d1d9;background:#0d1117}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#ff7b72}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#d2a8ff}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#79c0ff}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#a5d6ff}.hljs-built_in,.hljs-symbol{color:#ffa657}.hljs-code,.hljs-comment,.hljs-formula{color:#8b949e}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#7ee787}.hljs-subst{color:#c9d1d9}.hljs-section{color:#1f6feb;font-weight:700}.hljs-bullet{color:#f2cc60}.hljs-emphasis{color:#c9d1d9;font-style:italic}.hljs-strong{color:#c9d1d9;font-weight:700}.hljs-addition{color:#aff5b4;background-color:#033a16}.hljs-deletion{color:#ffdcd7;background-color:#67060c} \ No newline at end of file diff --git a/public/static/css/github.min.css b/public/static/css/github.min.css deleted file mode 100644 index 275239a..0000000 --- a/public/static/css/github.min.css +++ /dev/null @@ -1,10 +0,0 @@ -pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*! - Theme: GitHub - Description: Light theme as seen on github.com - Author: github.com - Maintainer: @Hirse - Updated: 2021-05-15 - - Outdated base version: https://github.com/primer/github-syntax-light - Current colors taken from GitHub's CSS -*/.hljs{color:#24292e;background:#fff}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#d73a49}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#6f42c1}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#005cc5}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#032f62}.hljs-built_in,.hljs-symbol{color:#e36209}.hljs-code,.hljs-comment,.hljs-formula{color:#6a737d}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#22863a}.hljs-subst{color:#24292e}.hljs-section{color:#005cc5;font-weight:700}.hljs-bullet{color:#735c0f}.hljs-emphasis{color:#24292e;font-style:italic}.hljs-strong{color:#24292e;font-weight:700}.hljs-addition{color:#22863a;background-color:#f0fff4}.hljs-deletion{color:#b31d28;background-color:#ffeef0} \ No newline at end of file diff --git a/public/static/css/googlecode.min.css b/public/static/css/googlecode.min.css deleted file mode 100644 index 0140b89..0000000 --- a/public/static/css/googlecode.min.css +++ /dev/null @@ -1 +0,0 @@ -pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#fff;color:#000}.hljs-comment,.hljs-quote{color:#800}.hljs-keyword,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-title{color:#008}.hljs-template-variable,.hljs-variable{color:#660}.hljs-regexp,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-string{color:#080}.hljs-bullet,.hljs-link,.hljs-literal,.hljs-meta,.hljs-number,.hljs-symbol{color:#066}.hljs-attr,.hljs-built_in,.hljs-doctag,.hljs-params,.hljs-title,.hljs-type{color:#606}.hljs-attribute,.hljs-subst{color:#000}.hljs-formula{background-color:#eee;font-style:italic}.hljs-selector-class,.hljs-selector-id{color:#9b703f}.hljs-addition{background-color:#baeeba}.hljs-deletion{background-color:#ffc8bd}.hljs-doctag,.hljs-strong{font-weight:700}.hljs-emphasis{font-style:italic} \ No newline at end of file diff --git a/public/static/css/stackoverflow-dark.min.css b/public/static/css/stackoverflow-dark.min.css deleted file mode 100644 index 33cea55..0000000 --- a/public/static/css/stackoverflow-dark.min.css +++ /dev/null @@ -1,13 +0,0 @@ -pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*! - Theme: StackOverflow Dark - Description: Dark theme as used on stackoverflow.com - Author: stackoverflow.com - Maintainer: @Hirse - Website: https://github.com/StackExchange/Stacks - License: MIT - Updated: 2021-05-15 - - Updated for @stackoverflow/stacks v0.64.0 - Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less - Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less -*/.hljs{color:#fff;background:#1c1b1b}.hljs-subst{color:#fff}.hljs-comment{color:#999}.hljs-attr,.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-section,.hljs-selector-tag{color:#88aece}.hljs-attribute{color:#c59bc1}.hljs-name,.hljs-number,.hljs-quote,.hljs-selector-id,.hljs-template-tag,.hljs-type{color:#f08d49}.hljs-selector-class{color:#88aece}.hljs-link,.hljs-regexp,.hljs-selector-attr,.hljs-string,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#b5bd68}.hljs-meta,.hljs-selector-pseudo{color:#88aece}.hljs-built_in,.hljs-literal,.hljs-title{color:#f08d49}.hljs-bullet,.hljs-code{color:#ccc}.hljs-meta .hljs-string{color:#b5bd68}.hljs-deletion{color:#de7176}.hljs-addition{color:#76c490}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700} \ No newline at end of file diff --git a/public/static/css/stackoverflow-light.min.css b/public/static/css/stackoverflow-light.min.css deleted file mode 100644 index c36d63d..0000000 --- a/public/static/css/stackoverflow-light.min.css +++ /dev/null @@ -1,13 +0,0 @@ -pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*! - Theme: StackOverflow Light - Description: Light theme as used on stackoverflow.com - Author: stackoverflow.com - Maintainer: @Hirse - Website: https://github.com/StackExchange/Stacks - License: MIT - Updated: 2021-05-15 - - Updated for @stackoverflow/stacks v0.64.0 - Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less - Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less -*/.hljs{color:#2f3337;background:#f6f6f6}.hljs-subst{color:#2f3337}.hljs-comment{color:#656e77}.hljs-attr,.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-section,.hljs-selector-tag{color:#015692}.hljs-attribute{color:#803378}.hljs-name,.hljs-number,.hljs-quote,.hljs-selector-id,.hljs-template-tag,.hljs-type{color:#b75501}.hljs-selector-class{color:#015692}.hljs-link,.hljs-regexp,.hljs-selector-attr,.hljs-string,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#54790d}.hljs-meta,.hljs-selector-pseudo{color:#015692}.hljs-built_in,.hljs-literal,.hljs-title{color:#b75501}.hljs-bullet,.hljs-code{color:#535a60}.hljs-meta .hljs-string{color:#54790d}.hljs-deletion{color:#c02d2e}.hljs-addition{color:#2f6f44}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700} \ No newline at end of file diff --git a/public/static/css/vs2015.min.css b/public/static/css/vs2015.min.css deleted file mode 100644 index 7f6fe11..0000000 --- a/public/static/css/vs2015.min.css +++ /dev/null @@ -1 +0,0 @@ -pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#1e1e1e;color:#dcdcdc}.hljs-keyword,.hljs-literal,.hljs-name,.hljs-symbol{color:#569cd6}.hljs-link{color:#569cd6;text-decoration:underline}.hljs-built_in,.hljs-type{color:#4ec9b0}.hljs-class,.hljs-number{color:#b8d7a3}.hljs-meta .hljs-string,.hljs-string{color:#d69d85}.hljs-regexp,.hljs-template-tag{color:#9a5334}.hljs-formula,.hljs-function,.hljs-params,.hljs-subst,.hljs-title{color:#dcdcdc}.hljs-comment,.hljs-quote{color:#57a64a;font-style:italic}.hljs-doctag{color:#608b4e}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-tag{color:#9b9b9b}.hljs-template-variable,.hljs-variable{color:#bd63c5}.hljs-attr,.hljs-attribute{color:#9cdcfe}.hljs-section{color:gold}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-bullet,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-selector-tag{color:#d7ba7d}.hljs-addition{background-color:#144212;display:inline-block;width:100%}.hljs-deletion{background-color:#600;display:inline-block;width:100%} \ No newline at end of file diff --git a/public/static/js/hljs.js b/public/static/js/hljs.js deleted file mode 100644 index a0e583a..0000000 --- a/public/static/js/hljs.js +++ /dev/null @@ -1,1220 +0,0 @@ -/* - Highlight.js 10.5.0 (af20048d) - License: BSD-3-Clause - Copyright (c) 2006-2020, Ivan Sagalaev -*/ -var hljs = (function () { - "use strict"; function e(t) { - return t instanceof Map - ? t.clear = t.delete = t.set = () => { - throw Error("map is read-only") - } - : t instanceof Set && (t.add = t.clear = t.delete = () => { - throw Error("set is read-only") - }), Object.freeze(t), Object.getOwnPropertyNames(t).forEach(((n) => { - var s = t[n] - "object" != typeof s || Object.isFrozen(s) || e(s) - })), t - } var t = e, n = e; t.default = n - class s { - constructor(e) { void 0 === e.data && (e.data = {}), this.data = e.data } - ignoreMatch() { this.ignore = !0 } - } function r(e) { - return e.replace(/&/g, "&").replace(//g, ">").replace(/"/g, """).replace(/'/g, "'") - } function a(e, ...t) { - const n = Object.create(null); for (const t in e)n[t] = e[t] - return t.forEach(((e) => { for (const t in e)n[t] = e[t] })), n - } const i = e => !!e.kind - class o { - constructor(e, t) { - this.buffer = "", this.classPrefix = t.classPrefix, e.walk(this) - } - - addText(e) { - this.buffer += r(e) - } - - openNode(e) { - if (!i(e)) return; let t = e.kind - e.sublanguage || (t = `${this.classPrefix}${t}`), this.span(t) - } - - closeNode(e) { - i(e) && (this.buffer += "") - } - - value() { return this.buffer }span(e) { - this.buffer += `` - } - } class l { - constructor() { - this.rootNode = { - children: [] }, this.stack = [this.rootNode] - } - - get top() { - return this.stack[this.stack.length - 1] - } - - get root() { return this.rootNode }add(e) { - this.top.children.push(e) - } - - openNode(e) { - const t = { kind: e, children: [] } - this.add(t), this.stack.push(t) - } - - closeNode() { - if (this.stack.length > 1) return this.stack.pop() - } - - closeAllNodes() { - for (;this.closeNode();); - } - - toJSON() { return JSON.stringify(this.rootNode, null, 4) } - walk(e) { return this.constructor._walk(e, this.rootNode) } static _walk(e, t) { - return "string" == typeof t - ? e.addText(t) - : t.children && (e.openNode(t), - t.children.forEach((t => this._walk(e, t))), e.closeNode(t)), e - } - - static _collapse(e) { - "string" != typeof e && e.children && (e.children.every((e => "string" == typeof e)) - ? e.children = [e.children.join("")] - : e.children.forEach(((e) => { - l._collapse(e) - }))) - } - } class c extends l { - constructor(e) { super(), this.options = e } - addKeyword(e, t) { "" !== e && (this.openNode(t), this.addText(e), this.closeNode()) } - addText(e) { "" !== e && this.add(e) }addSublanguage(e, t) { - const n = e.root - n.kind = t, n.sublanguage = !0, this.add(n) - } - - toHTML() { - return new o(this, this.options).value() - } - - finalize() { return !0 } - } function u(e) { - return e ? "string" == typeof e ? e : e.source : null - } - const g = "[a-zA-Z]\\w*", d = "[a-zA-Z_]\\w*", h = "\\b\\d+(\\.\\d+)?", f = "(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)", p = "\\b(0b[01]+)", m = { - begin: "\\\\[\\s\\S]", relevance: 0 }, b = { className: "string", begin: "'", end: "'", - illegal: "\\n", contains: [m] }, x = { className: "string", begin: "\"", end: "\"", - illegal: "\\n", contains: [m] }, E = { - begin: /\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/, - }, v = (e, t, n = {}) => { - const s = a({ className: "comment", begin: e, end: t, contains: [] }, n) - return s.contains.push(E), s.contains.push({ className: "doctag", - begin: "(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):", relevance: 0 }), s - }, N = v("//", "$"), w = v("/\\*", "\\*/"), R = v("#", "$"); var y = Object.freeze({ - __proto__: null, IDENT_RE: g, UNDERSCORE_IDENT_RE: d, NUMBER_RE: h, C_NUMBER_RE: f, - BINARY_NUMBER_RE: p, - RE_STARTERS_RE: "!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~", - SHEBANG: (e = {}) => { - const t = /^#![ ]*\// - return e.binary && (e.begin = ((...e) => e.map((e => u(e))).join(""))(t, /.*\b/, e.binary, /\b.*/)), - a({ "className": "meta", "begin": t, "end": /$/, "relevance": 0, "on:begin": (e, t) => { - 0 !== e.index && t.ignoreMatch() - } }, e) - }, BACKSLASH_ESCAPE: m, APOS_STRING_MODE: b, - QUOTE_STRING_MODE: x, PHRASAL_WORDS_MODE: E, COMMENT: v, C_LINE_COMMENT_MODE: N, - C_BLOCK_COMMENT_MODE: w, HASH_COMMENT_MODE: R, NUMBER_MODE: { className: "number", - begin: h, relevance: 0 }, C_NUMBER_MODE: { className: "number", begin: f, relevance: 0 }, - BINARY_NUMBER_MODE: { className: "number", begin: p, relevance: 0 }, CSS_NUMBER_MODE: { - className: "number", - begin: h + "(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?", - relevance: 0 }, REGEXP_MODE: { begin: /(?=\/[^/\n]*\/)/, contains: [{ className: "regexp", - begin: /\//, end: /\/[gimuy]*/, illegal: /\n/, contains: [m, { begin: /\[/, end: /\]/, - relevance: 0, contains: [m] }] }] }, TITLE_MODE: { className: "title", begin: g, relevance: 0, - }, UNDERSCORE_TITLE_MODE: { className: "title", begin: d, relevance: 0 }, METHOD_GUARD: { - begin: "\\.\\s*[a-zA-Z_]\\w*", relevance: 0 }, END_SAME_AS_BEGIN: e => Object.assign(e, { - "on:begin": (e, t) => { t.data._beginMatch = e[1] }, "on:end": (e, t) => { - t.data._beginMatch !== e[1] && t.ignoreMatch() - } }) }); function _(e, t) { - "." === e.input[e.index - 1] && t.ignoreMatch() - } function k(e, t) { - t && e.beginKeywords && (e.begin = "\\b(" + e.beginKeywords.split(" ").join("|") + ")(?!\\.)(?=\\b|\\s)", - e.__beforeBegin = _, e.keywords = e.keywords || e.beginKeywords, delete e.beginKeywords) - } function M(e, t) { - Array.isArray(e.illegal) && (e.illegal = ((...e) => "(" + e.map((e => u(e))).join("|") + ")")(...e.illegal)) - } function O(e, t) { - if (e.match) { - if (e.begin || e.end) throw Error("begin & end are not supported with match") - e.begin = e.match, delete e.match - } - } function A(e, t) { - void 0 === e.relevance && (e.relevance = 1) - } - const L = ["of", "and", "for", "in", "not", "or", "if", "then", "parent", "list", "value"] - function B(e, t) { return t ? Number(t) : (e => L.includes(e.toLowerCase()))(e) ? 0 : 1 } - function I(e, { plugins: t }) { - function n(t, n) { - return RegExp(u(t), "m" + (e.case_insensitive ? "i" : "") + (n ? "g" : "")) - } class s { - constructor() { - this.matchIndexes = {}, this.regexes = [], this.matchAt = 1, this.position = 0 - } - - addRule(e, t) { - t.position = this.position++, this.matchIndexes[this.matchAt] = t, this.regexes.push([t, e]), - this.matchAt += (e => RegExp(e.toString() + "|").exec("").length - 1)(e) + 1 - } - - compile() { - 0 === this.regexes.length && (this.exec = () => null) - const e = this.regexes.map((e => e[1])); this.matcherRe = n(((e, t = "|") => { - const n = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./; let s = 0, r = "" - for (let a = 0; a < e.length; a++) { - s += 1; const i = s; let o = u(e[a]) - for (a > 0 && (r += t), r += "("; o.length > 0;) { - const e = n.exec(o); if (null == e) { r += o; break } - r += o.substring(0, e.index), - o = o.substring(e.index + e[0].length), "\\" === e[0][0] && e[1] - ? r += "\\" + (Number(e[1]) + i) - : (r += e[0], - "(" === e[0] && s++) - }r += ")" - } return r - })(e), !0), this.lastIndex = 0 - } - - exec(e) { - this.matcherRe.lastIndex = this.lastIndex; const t = this.matcherRe.exec(e) - if (!t) return null - const n = t.findIndex(((e, t) => t > 0 && void 0 !== e)), s = this.matchIndexes[n] - return t.splice(0, n), Object.assign(t, s) - } - } class r { - constructor() { - this.rules = [], this.multiRegexes = [], - this.count = 0, this.lastIndex = 0, this.regexIndex = 0 - } - - getMatcher(e) { - if (this.multiRegexes[e]) return this.multiRegexes[e]; const t = new s() - return this.rules.slice(e).forEach((([e, n]) => t.addRule(e, n))), - t.compile(), this.multiRegexes[e] = t, t - } - - resumingScanAtSamePosition() { - return 0 !== this.regexIndex - } - - considerAll() { this.regexIndex = 0 }addRule(e, t) { - this.rules.push([e, t]), "begin" === t.type && this.count++ - } - - exec(e) { - const t = this.getMatcher(this.regexIndex); t.lastIndex = this.lastIndex - let n = t.exec(e) - if (this.resumingScanAtSamePosition()) if (n && n.index === this.lastIndex);else { - const t = this.getMatcher(0); t.lastIndex = this.lastIndex + 1, n = t.exec(e) - } - return n && (this.regexIndex += n.position + 1, - this.regexIndex === this.count && this.considerAll()), n - } - } - if (e.compilerExtensions || (e.compilerExtensions = []), - e.contains && e.contains.includes("self")) throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.") - return e.classNameAliases = a(e.classNameAliases || {}), (function t(s, i) { - const o = s - if (s.compiled) return o - ;[O].forEach((e => e(s, i))), e.compilerExtensions.forEach((e => e(s, i))), - s.__beforeBegin = null, [k, M, A].forEach((e => e(s, i))), s.compiled = !0; let l = null - if ("object" == typeof s.keywords && (l = s.keywords.$pattern, - delete s.keywords.$pattern), s.keywords && (s.keywords = ((e, t) => { - const n = {} - return "string" == typeof e - ? s("keyword", e) - : Object.keys(e).forEach(((t) => { - s(t, e[t]) - })), n; function s(e, s) { - t && (s = s.toLowerCase()), s.split(" ").forEach(((t) => { - const s = t.split("|"); n[s[0]] = [e, B(s[0], s[1])] - })) - } - })(s.keywords, e.case_insensitive)), - s.lexemes && l) throw Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ") - return l = l || s.lexemes || /\w+/, - o.keywordPatternRe = n(l, !0), i && (s.begin || (s.begin = /\B|\b/), - o.beginRe = n(s.begin), s.endSameAsBegin && (s.end = s.begin), - s.end || s.endsWithParent || (s.end = /\B|\b/), - s.end && (o.endRe = n(s.end)), o.terminatorEnd = u(s.end) || "", - s.endsWithParent && i.terminatorEnd && (o.terminatorEnd += (s.end ? "|" : "") + i.terminatorEnd)), - s.illegal && (o.illegalRe = n(s.illegal)), - s.contains || (s.contains = []), s.contains = [].concat(...s.contains.map((e => (e => (e.variants && !e.cachedVariants && (e.cachedVariants = e.variants.map((t => a(e, { - variants: null }, t)))), e.cachedVariants - ? e.cachedVariants - : T(e) - ? a(e, { - starts: e.starts ? a(e.starts) : null, - }) - : Object.isFrozen(e) ? a(e) : e))("self" === e ? s : e)))), s.contains.forEach(((e) => { - t(e, o) - })), s.starts && t(s.starts, i), o.matcher = ((e) => { - const t = new r() - return e.contains.forEach((e => t.addRule(e.begin, { rule: e, type: "begin", - }))), e.terminatorEnd && t.addRule(e.terminatorEnd, { type: "end", - }), e.illegal && t.addRule(e.illegal, { type: "illegal" }), t - })(o), o - }(e)) - } function T(e) { - return !!e && (e.endsWithParent || T(e.starts)) - } function j(e) { - const t = { - props: ["language", "code", "autodetect"], data: () => ({ detectedLanguage: "", - unknownLanguage: !1 }), computed: { className() { - return this.unknownLanguage ? "" : "hljs " + this.detectedLanguage - }, highlighted() { - if (!this.autoDetect && !e.getLanguage(this.language)) return console.warn(`The language "${this.language}" you specified could not be found.`), - this.unknownLanguage = !0, r(this.code); let t = {} - return this.autoDetect - ? (t = e.highlightAuto(this.code), - this.detectedLanguage = t.language) - : (t = e.highlight(this.language, this.code, this.ignoreIllegals), - this.detectedLanguage = this.language), t.value - }, autoDetect() { - return !(this.language && (e = this.autodetect, !e && "" !== e)); var e - }, - ignoreIllegals: () => !0 }, render(e) { - return e("pre", {}, [e("code", { - class: this.className, domProps: { innerHTML: this.highlighted } })]) - } }; return { - Component: t, VuePlugin: { install(e) { e.component("highlightjs", t) } } } - } const S = { - "after:highlightBlock": ({ block: e, result: t, text: n }) => { - const s = D(e) - if (!s.length) return; const a = document.createElement("div") - a.innerHTML = t.value, t.value = ((e, t, n) => { - let s = 0, a = ""; const i = []; function o() { - return e.length && t.length ? e[0].offset !== t[0].offset ? e[0].offset < t[0].offset ? e : t : "start" === t[0].event ? e : t : e.length ? e : t - } function l(e) { - a += "<" + P(e) + [].map.call(e.attributes, function (e) { - return " " + e.nodeName + "=\"" + r(e.value) + "\"" - }).join("") + ">" - } function c(e) { - a += "" - } function u(e) { ("start" === e.event ? l : c)(e.node) } - for (;e.length || t.length;) { - let t = o() - if (a += r(n.substring(s, t[0].offset)), s = t[0].offset, t === e) { - i.reverse().forEach(c) - do { u(t.splice(0, 1)[0]), t = o() } while (t === e && t.length && t[0].offset === s) - i.reverse().forEach(l) - } - else "start" === t[0].event ? i.push(t[0].node) : i.pop(), u(t.splice(0, 1)[0]) - } - return a + r(n.substr(s)) - })(s, D(a), n) - } }; function P(e) { - return e.nodeName.toLowerCase() - } function D(e) { - const t = []; return (function e(n, s) { - for (let r = n.firstChild; r; r = r.nextSibling)3 === r.nodeType - ? s += r.nodeValue.length - : 1 === r.nodeType && (t.push({ - event: "start", offset: s, node: r }), s = e(r, s), P(r).match(/br|hr|img|input/) || t.push({ - event: "stop", offset: s, node: r })); return s - }(e, 0)), t - } const C = (e) => { - console.error(e) - }, H = (e, ...t) => { console.log("WARN: " + e, ...t) }, $ = (e, t) => { - console.log(`Deprecated as of ${e}. ${t}`) - }, U = r, z = a, K = Symbol("nomatch") - return ((e) => { - const n = Object.create(null), r = Object.create(null), a = []; let i = !0 - const o = /(^(<[^>]+>|\t|)+|\n)/gm, l = "Could not find the language '{}', did you forget to load/include a language module?", u = { - disableAutodetect: !0, name: "Plain text", contains: [] }; let g = { - noHighlightRe: /^(no-?highlight)$/i, - languageDetectRe: /\blang(?:uage)?-([\w-]+)\b/i, classPrefix: "hljs-", - tabReplace: null, useBR: !1, languages: null, __emitter: c }; function d(e) { - return g.noHighlightRe.test(e) - } function h(e, t, n, s) { - const r = { code: t, language: e } - _("before:highlight", r); const a = r.result ? r.result : f(r.language, r.code, n, s) - return a.code = r.code, _("after:highlight", a), a - } function f(e, t, r, o) { - const c = t - function u(e, t) { - const n = w.case_insensitive ? t[0].toLowerCase() : t[0] - return Object.prototype.hasOwnProperty.call(e.keywords, n) && e.keywords[n] - } - function d() { - null != _.subLanguage - ? (() => { - if ("" === O) return; let e = null - if ("string" == typeof _.subLanguage) { - if (!n[_.subLanguage]) return void M.addText(O) - e = f(_.subLanguage, O, !0, k[_.subLanguage]), k[_.subLanguage] = e.top - } - else e = p(O, _.subLanguage.length ? _.subLanguage : null) - _.relevance > 0 && (A += e.relevance), M.addSublanguage(e.emitter, e.language) - })() - : (() => { - if (!_.keywords) return void M.addText(O); let e = 0 - _.keywordPatternRe.lastIndex = 0; let t = _.keywordPatternRe.exec(O), n = ""; for (;t;) { - n += O.substring(e, t.index); const s = u(_, t); if (s) { - const [e, r] = s - M.addText(n), n = "", A += r; const a = w.classNameAliases[e] || e; M.addKeyword(t[0], a) - } - else n += t[0]; e = _.keywordPatternRe.lastIndex, t = _.keywordPatternRe.exec(O) - } - n += O.substr(e), M.addText(n) - })(), O = "" - } function h(e) { - return e.className && M.openNode(w.classNameAliases[e.className] || e.className), - _ = Object.create(e, { parent: { value: _ } }), _ - } function m(e, t, n) { - let r = ((e, t) => { - const n = e && e.exec(t); return n && 0 === n.index - })(e.endRe, n); if (r) { - if (e["on:end"]) { - const n = new s(e); e["on:end"](t, n), n.ignore && (r = !1) - } if (r) { - for (;e.endsParent && e.parent;)e = e.parent; return e - } - } - if (e.endsWithParent) return m(e.parent, t, n) - } function b(e) { - return 0 === _.matcher.regexIndex ? (O += e[0], 1) : (T = !0, 0) - } function x(e) { - const t = e[0], n = c.substr(e.index), s = m(_, e, n); if (!s) return K; const r = _ - r.skip ? O += t : (r.returnEnd || r.excludeEnd || (O += t), d(), r.excludeEnd && (O = t)); do { - _.className && M.closeNode(), _.skip || _.subLanguage || (A += _.relevance), _ = _.parent - } while (_ !== s.parent) - return s.starts && (s.endSameAsBegin && (s.starts.endRe = s.endRe), - h(s.starts)), r.returnEnd ? 0 : t.length - } let E = {}; function v(t, n) { - const a = n && n[0] - if (O += t, null == a) return d(), 0 - if ("begin" === E.type && "end" === n.type && E.index === n.index && "" === a) { - if (O += c.slice(n.index, n.index + 1), !i) { - const t = Error("0 width match regex") - throw t.languageName = e, t.badRule = E.rule, t - } return 1 - } - if (E = n, "begin" === n.type) return (function (e) { - const t = e[0], n = e.rule, r = new s(n), a = [n.__beforeBegin, n["on:begin"]] - for (const n of a) if (n && (n(e, r), r.ignore)) return b(t) - return n && n.endSameAsBegin && (n.endRe = RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g, "\\$&"), "m")), - n.skip - ? O += t - : (n.excludeBegin && (O += t), - d(), n.returnBegin || n.excludeBegin || (O = t)), h(n), n.returnBegin ? 0 : t.length - }(n)) - if ("illegal" === n.type && !r) { - const e = Error("Illegal lexeme \"" + a + "\" for mode \"" + (_.className || "") + "\"") - throw e.mode = _, e - } if ("end" === n.type) { const e = x(n); if (e !== K) return e } - if ("illegal" === n.type && "" === a) return 1 - if (B > 1e5 && B > 3 * n.index) throw Error("potential infinite loop, way more iterations than matches") - return O += a, a.length - } const w = N(e) - if (!w) throw C(l.replace("{}", e)), Error("Unknown language: \"" + e + "\"") - const R = I(w, { plugins: a }); let y = "", _ = o || R; const k = {}, M = new g.__emitter(g); (() => { - const e = []; for (let t = _; t !== w; t = t.parent)t.className && e.unshift(t.className) - e.forEach((e => M.openNode(e))) - })(); let O = "", A = 0, L = 0, B = 0, T = !1; try { - for (_.matcher.considerAll(); ;) { - B++, T ? T = !1 : _.matcher.considerAll(), _.matcher.lastIndex = L - const e = _.matcher.exec(c); if (!e) break; const t = v(c.substring(L, e.index), e) - L = e.index + t - } return v(c.substr(L)), M.closeAllNodes(), M.finalize(), y = M.toHTML(), { - relevance: A, value: y, language: e, illegal: !1, emitter: M, top: _ } - } - catch (t) { - if (t.message && t.message.includes("Illegal")) return { illegal: !0, illegalBy: { - msg: t.message, context: c.slice(L - 100, L + 100), mode: t.mode }, sofar: y, relevance: 0, - value: U(c), emitter: M }; if (i) return { illegal: !1, relevance: 0, value: U(c), emitter: M, - language: e, top: _, errorRaised: t }; throw t - } - } function p(e, t) { - t = t || g.languages || Object.keys(n); const s = ((e) => { - const t = { relevance: 0, - emitter: new g.__emitter(g), value: U(e), illegal: !1, top: u } - return t.emitter.addText(e), t - })(e), r = t.filter(N).filter(R).map((t => f(t, e, !1))) - r.unshift(s); const a = r.sort(((e, t) => { - if (e.relevance !== t.relevance) return t.relevance - e.relevance - if (e.language && t.language) { - if (N(e.language).supersetOf === t.language) return 1 - if (N(t.language).supersetOf === e.language) return -1 - } return 0 - })), [i, o] = a, l = i - return l.second_best = o, l - } const m = { "before:highlightBlock": ({ block: e }) => { - g.useBR && (e.innerHTML = e.innerHTML.replace(/\n/g, "").replace(//g, "\n")) - }, "after:highlightBlock": ({ result: e }) => { - g.useBR && (e.value = e.value.replace(/\n/g, "
")) - } }, b = /^(<[^>]+>|\t)+/gm, x = { - "after:highlightBlock": ({ result: e }) => { - g.tabReplace && (e.value = e.value.replace(b, e => e.replace(/\t/g, g.tabReplace))) - } } - function E(e) { - let t = null; const n = ((e) => { - let t = e.className + " " - t += e.parentNode ? e.parentNode.className : ""; const n = g.languageDetectRe.exec(t) - if (n) { - const t = N(n[1]) - return t || (H(l.replace("{}", n[1])), H("Falling back to no-highlight mode for this block.", e)), - t ? n[1] : "no-highlight" - } return t.split(/\s+/).find((e => d(e) || N(e))) - })(e) - if (d(n)) return; _("before:highlightBlock", { block: e, language: n }), t = e - const s = t.textContent, a = n ? h(n, s, !0) : p(s); _("after:highlightBlock", { block: e, - result: a, text: s }), e.innerHTML = a.value, ((e, t, n) => { - const s = t ? r[t] : n - e.classList.add("hljs"), s && e.classList.add(s) - })(e, n, a.language), e.result = { - language: a.language, re: a.relevance, relavance: a.relevance, - }, a.second_best && (e.second_best = { language: a.second_best.language, - re: a.second_best.relevance, relavance: a.second_best.relevance }) - } const v = () => { - v.called || (v.called = !0, document.querySelectorAll("pre code").forEach(E)) - } - function N(e) { return e = (e || "").toLowerCase(), n[e] || n[r[e]] } - function w(e, { languageName: t }) { - "string" == typeof e && (e = [e]), e.forEach(((e) => { - r[e] = t - })) - } function R(e) { const t = N(e); return t && !t.disableAutodetect } function _(e, t) { - const n = e; a.forEach(((e) => { e[n] && e[n](t) })) - }Object.assign(e, { highlight: h, - highlightAuto: p, fixMarkup: (e) => { - return $("10.2.0", "fixMarkup will be removed entirely in v11.0"), - $("10.2.0", "Please see https://github.com/highlightjs/highlight.js/issues/2534"), - t = e, - g.tabReplace || g.useBR ? t.replace(o, e => "\n" === e ? g.useBR ? "
" : e : g.tabReplace ? e.replace(/\t/g, g.tabReplace) : e) : t - var t - }, highlightBlock: E, configure: (e) => { - e.useBR && ($("10.3.0", "'useBR' will be removed entirely in v11.0"), - $("10.3.0", "Please see https://github.com/highlightjs/highlight.js/issues/2559")), - g = z(g, e) - }, initHighlighting: v, initHighlightingOnLoad: () => { - window.addEventListener("DOMContentLoaded", v, !1) - }, registerLanguage: (t, s) => { - let r = null; try { r = s(e) } - catch (e) { - if (C("Language definition for '{}' could not be registered.".replace("{}", t)), - !i) throw e; C(e), r = u - } - r.name || (r.name = t), n[t] = r, r.rawDefinition = s.bind(null, e), r.aliases && w(r.aliases, { - languageName: t }) - }, listLanguages: () => Object.keys(n), getLanguage: N, - registerAliases: w, requireLanguage: (e) => { - $("10.4.0", "requireLanguage will be removed entirely in v11."), - $("10.4.0", "Please see https://github.com/highlightjs/highlight.js/pull/2844") - const t = N(e); if (t) return t - throw Error("The '{}' language is required, but not loaded.".replace("{}", e)) - }, - autoDetection: R, inherit: z, addPlugin: (e) => { a.push(e) }, vuePlugin: j(e).VuePlugin, - }), e.debugMode = () => { i = !1 }, e.safeMode = () => { i = !0 }, e.versionString = "10.5.0" - for (const e in y)"object" == typeof y[e] && t(y[e]) - return Object.assign(e, y), e.addPlugin(m), e.addPlugin(S), e.addPlugin(x), e - })({}) -}()); "object" == typeof exports && "undefined" != typeof module && (module.exports = hljs); hljs.registerLanguage("cpp", (() => { - "use strict"; function e(e) { - return ((...e) => e.map((e => (e => e ? "string" == typeof e ? e : e.source : null)(e))).join(""))("(", e, ")?") - } return (t) => { - const n = ((t) => { - const n = t.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }], - }), r = "[a-zA-Z_]\\w*::", a = "(decltype\\(auto\\)|" + e(r) + "[a-zA-Z_]\\w*" + e("<[^<>]+>") + ")", s = { - className: "keyword", begin: "\\b[a-z\\d_]*_t\\b" }, i = { className: "string", - variants: [{ begin: "(u8?|U|L)?\"", end: "\"", illegal: "\\n", - contains: [t.BACKSLASH_ESCAPE] }, { - begin: "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", - end: "'", illegal: "." }, t.END_SAME_AS_BEGIN({ - begin: /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/, end: /\)([^()\\ ]{0,16})"/ })] }, c = { - className: "number", variants: [{ begin: "\\b(0b[01']+)" }, { - begin: "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)", - }, { - begin: "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)", - }], relevance: 0 }, o = { className: "meta", begin: /#\s*[a-z]+\b/, end: /$/, keywords: { - "meta-keyword": "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include", - }, contains: [{ begin: /\\\n/, relevance: 0 }, t.inherit(i, { className: "meta-string" }), { - className: "meta-string", begin: /<.*?>/, end: /$/, illegal: "\\n", - }, n, t.C_BLOCK_COMMENT_MODE] }, l = { className: "title", begin: e(r) + t.IDENT_RE, - relevance: 0 }, d = e(r) + t.IDENT_RE + "\\s*\\(", u = { - keyword: "int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq", - built_in: "std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary", - literal: "true false nullptr NULL" }, p = [o, s, n, t.C_BLOCK_COMMENT_MODE, c, i], m = { - variants: [{ begin: /=/, end: /;/ }, { begin: /\(/, end: /\)/ }, { - beginKeywords: "new throw return else", end: /;/ }], keywords: u, contains: p.concat([{ - begin: /\(/, end: /\)/, keywords: u, contains: p.concat(["self"]), relevance: 0 }]), - relevance: 0 }, _ = { className: "function", begin: "(" + a + "[\\*&\\s]+)+" + d, - returnBegin: !0, end: /[{;=]/, excludeEnd: !0, keywords: u, illegal: /[^\w\s\*&:<>.]/, - contains: [{ begin: "decltype\\(auto\\)", keywords: u, relevance: 0 }, { begin: d, - returnBegin: !0, contains: [l], relevance: 0 }, { className: "params", begin: /\(/, - end: /\)/, keywords: u, relevance: 0, contains: [n, t.C_BLOCK_COMMENT_MODE, i, c, s, { - begin: /\(/, end: /\)/, keywords: u, relevance: 0, - contains: ["self", n, t.C_BLOCK_COMMENT_MODE, i, c, s] }], - }, s, n, t.C_BLOCK_COMMENT_MODE, o] }; return { - aliases: ["c", "cc", "h", "c++", "h++", "hpp", "hh", "hxx", "cxx"], keywords: u, - disableAutodetect: !0, illegal: "", keywords: u, contains: ["self", s] }, { begin: t.IDENT_RE + "::", keywords: u }, { - className: "class", beginKeywords: "enum class struct union", end: /[{;:<>=]/, - contains: [{ beginKeywords: "final class struct" }, t.TITLE_MODE] }]), exports: { - preprocessor: o, strings: i, keywords: u } } - })(t) - return n.disableAutodetect = !1, n.name = "C++", - n.aliases = ["cc", "c++", "h++", "hpp", "hh", "hxx", "cxx"], n - } -})()); hljs.registerLanguage("http", (() => { - "use strict"; function e(...e) { - return e.map(((e) => { - return (n = e) ? "string" == typeof n ? n : n.source : null; var n - })).join("") - } return (n) => { - const a = "HTTP/(2|1\\.[01])", s = [{ className: "attribute", - begin: e("^", /[A-Za-z][A-Za-z0-9-]*/, "(?=\\:\\s)"), starts: { contains: [{ - className: "punctuation", begin: /: /, relevance: 0, starts: { end: "$", relevance: 0 } }] }, - }, { begin: "\\n\\n", starts: { subLanguage: [], endsWithParent: !0 } }]; return { - name: "HTTP", aliases: ["https"], illegal: /\S/, contains: [{ begin: "^(?=" + a + " \\d{3})", - end: /$/, contains: [{ className: "meta", begin: a }, { className: "number", - begin: "\\b\\d{3}\\b" }], starts: { end: /\b\B/, illegal: /\S/, contains: s } }, { - begin: "(?=^[A-Z]+ (.*?) " + a + "$)", end: /$/, contains: [{ className: "string", - begin: " ", end: " ", excludeBegin: !0, excludeEnd: !0 }, { className: "meta", begin: a }, { - className: "keyword", begin: "[A-Z]+" }], starts: { end: /\b\B/, illegal: /\S/, contains: s }, - }] } - } -})()); hljs.registerLanguage("java", (() => { - "use strict" - var e = "\\.([0-9](_*[0-9])*)", n = "[0-9a-fA-F](_*[0-9a-fA-F])*", a = { - className: "number", variants: [{ - begin: `(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`, - }, { begin: `\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)` }, { - begin: `(${e})[fFdD]?\\b` }, { begin: "\\b([0-9](_*[0-9])*)[fFdD]\\b" }, { - begin: `\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`, - }, { begin: "\\b(0|[1-9](_*[0-9])*)[lL]?\\b" }, { begin: `\\b0[xX](${n})[lL]?\\b` }, { - begin: "\\b0(_*[0-7])*[lL]?\\b" }, { begin: "\\b0[bB][01](_*[01])*[lL]?\\b" }], - relevance: 0 }; return (e) => { - var n = "false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do", s = { - className: "meta", begin: "@[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*", - contains: [{ begin: /\(/, end: /\)/, contains: ["self"] }] }; const r = a; return { - name: "Java", aliases: ["jsp"], keywords: n, illegal: /<\/|#/, - contains: [e.COMMENT("/\\*\\*", "\\*/", { relevance: 0, contains: [{ begin: /\w+@/, - relevance: 0 }, { className: "doctag", begin: "@[A-Za-z]+" }] }), { - begin: /import java\.[a-z]+\./, keywords: "import", relevance: 2, - }, e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE, e.APOS_STRING_MODE, e.QUOTE_STRING_MODE, { - className: "class", beginKeywords: "class interface enum", end: /[{;=]/, - excludeEnd: !0, keywords: "class interface enum", illegal: /[:"\[\]]/, contains: [{ - beginKeywords: "extends implements" }, e.UNDERSCORE_TITLE_MODE] }, { - beginKeywords: "new throw return else", relevance: 0 }, { className: "class", - begin: "record\\s+" + e.UNDERSCORE_IDENT_RE + "\\s*\\(", returnBegin: !0, excludeEnd: !0, - end: /[{;=]/, keywords: n, contains: [{ beginKeywords: "record" }, { - begin: e.UNDERSCORE_IDENT_RE + "\\s*\\(", returnBegin: !0, relevance: 0, - contains: [e.UNDERSCORE_TITLE_MODE] }, { className: "params", begin: /\(/, end: /\)/, - keywords: n, relevance: 0, contains: [e.C_BLOCK_COMMENT_MODE], - }, e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE] }, { className: "function", - begin: "([\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(<[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(\\s*,\\s*[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*)*>)?\\s+)+" + e.UNDERSCORE_IDENT_RE + "\\s*\\(", - returnBegin: !0, end: /[{;=]/, excludeEnd: !0, keywords: n, contains: [{ - begin: e.UNDERSCORE_IDENT_RE + "\\s*\\(", returnBegin: !0, relevance: 0, - contains: [e.UNDERSCORE_TITLE_MODE] }, { className: "params", begin: /\(/, end: /\)/, - keywords: n, relevance: 0, - contains: [s, e.APOS_STRING_MODE, e.QUOTE_STRING_MODE, r, e.C_BLOCK_COMMENT_MODE], - }, e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE] }, r, s] } - } -})()); hljs.registerLanguage("nginx", (() => { - "use strict"; return (e) => { - const n = { - className: "variable", variants: [{ begin: /\$\d+/ }, { begin: /\$\{/, end: /\}/ }, { - begin: /[$@]/ + e.UNDERSCORE_IDENT_RE }] }, a = { endsWithParent: !0, keywords: { - $pattern: "[a-z/_]+", - literal: "on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll", - }, relevance: 0, illegal: "=>", contains: [e.HASH_COMMENT_MODE, { className: "string", - contains: [e.BACKSLASH_ESCAPE, n], variants: [{ begin: /"/, end: /"/ }, { begin: /'/, end: /'/, - }] }, { begin: "([a-z]+):/", end: "\\s", endsWithParent: !0, excludeEnd: !0, contains: [n], - }, { className: "regexp", contains: [e.BACKSLASH_ESCAPE, n], variants: [{ begin: "\\s\\^", - end: "\\s|\\{|;", returnEnd: !0 }, { begin: "~\\*?\\s+", end: "\\s|\\{|;", returnEnd: !0 }, { - begin: "\\*(\\.[a-z\\-]+)+" }, { begin: "([a-z\\-]+\\.)+\\*" }] }, { className: "number", - begin: "\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b" }, { - className: "number", begin: "\\b\\d+[kKmMgGdshdwy]*\\b", relevance: 0 }, n] }; return { - name: "Nginx config", aliases: ["nginxconf"], contains: [e.HASH_COMMENT_MODE, { - begin: e.UNDERSCORE_IDENT_RE + "\\s+\\{", returnBegin: !0, end: /\{/, contains: [{ - className: "section", begin: e.UNDERSCORE_IDENT_RE }], relevance: 0 }, { - begin: e.UNDERSCORE_IDENT_RE + "\\s", end: ";|\\{", returnBegin: !0, contains: [{ - className: "attribute", begin: e.UNDERSCORE_IDENT_RE, starts: a }], relevance: 0 }], - illegal: "[^\\s\\}]" } - } -})()); hljs.registerLanguage("xml", (() => { - "use strict"; function e(e) { - return e ? "string" == typeof e ? e : e.source : null - } function n(e) { return a("(?=", e, ")") } - function a(...n) { return n.map((n => e(n))).join("") } function s(...n) { - return "(" + n.map((n => e(n))).join("|") + ")" - } return (e) => { - const t = a(/[A-Z_]/, a("(", /[A-Z0-9_.-]+:/, ")?"), /[A-Z0-9_.-]*/), i = { - className: "symbol", begin: /&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/ }, r = { begin: /\s/, - contains: [{ className: "meta-keyword", begin: /#?[a-z_][a-z1-9_-]+/, illegal: /\n/ }], - }, c = e.inherit(r, { begin: /\(/, end: /\)/ }), l = e.inherit(e.APOS_STRING_MODE, { - className: "meta-string" }), g = e.inherit(e.QUOTE_STRING_MODE, { - className: "meta-string" }), m = { endsWithParent: !0, illegal: /`]+/ }] }], - }] }; return { name: "HTML, XML", - aliases: ["html", "xhtml", "rss", "atom", "xjb", "xsd", "xsl", "plist", "wsf", "svg"], - case_insensitive: !0, contains: [{ className: "meta", begin: //, - relevance: 10, contains: [r, g, l, c, { begin: /\[/, end: /\]/, contains: [{ className: "meta", - begin: //, contains: [r, c, g, l] }] }] }, e.COMMENT(//, { - relevance: 10 }), { begin: //, relevance: 10 }, i, { - className: "meta", begin: /<\?xml/, end: /\?>/, relevance: 10 }, { className: "tag", - begin: /)/, end: />/, keywords: { name: "style" }, contains: [m], starts: { - end: /<\/style>/, returnEnd: !0, subLanguage: ["css", "xml"] } }, { className: "tag", - begin: /)/, end: />/, keywords: { name: "script" }, contains: [m], starts: { - end: /<\/script>/, returnEnd: !0, subLanguage: ["javascript", "handlebars", "xml"] } }, { - className: "tag", begin: /<>|<\/>/ }, { className: "tag", - begin: a(//, />/, /\s/)))), end: /\/?>/, contains: [{ className: "name", - begin: t, relevance: 0, starts: m }] }, { className: "tag", begin: a(/<\//, n(a(t, />/))), - contains: [{ className: "name", begin: t, relevance: 0 }, { begin: />/, relevance: 0 }] }] } - } -})()); hljs.registerLanguage("markdown", (() => { - "use strict"; function n(...n) { - return n.map(((n) => { - return (e = n) ? "string" == typeof e ? e : e.source : null; var e - })).join("") - } return (e) => { - const a = { begin: /<\/?[A-Za-z_]/, end: ">", - subLanguage: "xml", relevance: 0 }, i = { variants: [{ begin: /\[.+?\]\[.*?\]/, relevance: 0, - }, { begin: /\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/, - relevance: 2 }, { begin: n(/\[.+?\]\(/, /[A-Za-z][A-Za-z0-9+.-]*/, /:\/\/.*?\)/), - relevance: 2 }, { begin: /\[.+?\]\([./?&#].*?\)/, relevance: 1 }, { - begin: /\[.+?\]\(.*?\)/, relevance: 0 }], returnBegin: !0, contains: [{ - className: "string", relevance: 0, begin: "\\[", end: "\\]", excludeBegin: !0, - returnEnd: !0 }, { className: "link", relevance: 0, begin: "\\]\\(", end: "\\)", - excludeBegin: !0, excludeEnd: !0 }, { className: "symbol", relevance: 0, begin: "\\]\\[", - end: "\\]", excludeBegin: !0, excludeEnd: !0 }] }, s = { className: "strong", contains: [], - variants: [{ begin: /_{2}/, end: /_{2}/ }, { begin: /\*{2}/, end: /\*{2}/ }] }, c = { - className: "emphasis", contains: [], variants: [{ begin: /\*(?!\*)/, end: /\*/ }, { - begin: /_(?!_)/, end: /_/, relevance: 0 }] }; s.contains.push(c), c.contains.push(s) - let t = [a, i] - return s.contains = s.contains.concat(t), c.contains = c.contains.concat(t), - t = t.concat(s, c), { name: "Markdown", aliases: ["md", "mkdown", "mkd"], contains: [{ - className: "section", variants: [{ begin: "^#{1,6}", end: "$", contains: t }, { - begin: "(?=^.+?\\n[=-]{2,}$)", contains: [{ begin: "^[=-]*$" }, { begin: "^", end: "\\n", - contains: t }] }] }, a, { className: "bullet", begin: "^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)", - end: "\\s+", excludeEnd: !0 }, s, c, { className: "quote", begin: "^>\\s+", contains: t, - end: "$" }, { className: "code", variants: [{ begin: "(`{3,})[^`](.|\\n)*?\\1`*[ ]*" }, { - begin: "(~{3,})[^~](.|\\n)*?\\1~*[ ]*" }, { begin: "```", end: "```+[ ]*$" }, { - begin: "~~~", end: "~~~+[ ]*$" }, { begin: "`.+?`" }, { begin: "(?=^( {4}|\\t))", - contains: [{ begin: "^( {4}|\\t)", end: "(\\n)$" }], relevance: 0 }] }, { - begin: "^[-\\*]{3,}", end: "$" }, i, { begin: /^\[[^\n]+\]:/, returnBegin: !0, contains: [{ - className: "symbol", begin: /\[/, end: /\]/, excludeBegin: !0, excludeEnd: !0 }, { - className: "link", begin: /:\s*/, end: /$/, excludeBegin: !0 }] }] } - } -})()); hljs.registerLanguage("ruby", (() => { - "use strict"; function e(...e) { - return e.map(((e) => { - return (n = e) ? "string" == typeof n ? n : n.source : null; var n - })).join("") - } return (n) => { - var a, i = "([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)", s = { - keyword: "and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__", - built_in: "proc lambda", literal: "true false nil" }, r = { className: "doctag", - begin: "@[A-Za-z]+" }, b = { begin: "#<", end: ">" }, t = [n.COMMENT("#", "$", { contains: [r], - }), n.COMMENT("^=begin", "^=end", { contains: [r], relevance: 10, - }), n.COMMENT("^__END__", "\\n$")], c = { className: "subst", begin: /#\{/, end: /\}/, - keywords: s }, d = { className: "string", contains: [n.BACKSLASH_ESCAPE, c], variants: [{ - begin: /'/, end: /'/ }, { begin: /"/, end: /"/ }, { begin: /`/, end: /`/ }, { begin: /%[qQwWx]?\(/, - end: /\)/ }, { begin: /%[qQwWx]?\[/, end: /\]/ }, { begin: /%[qQwWx]?\{/, end: /\}/ }, { - begin: /%[qQwWx]?/ }, { begin: /%[qQwWx]?\//, end: /\// }, { begin: /%[qQwWx]?%/, - end: /%/ }, { begin: /%[qQwWx]?-/, end: /-/ }, { begin: /%[qQwWx]?\|/, end: /\|/ }, { - begin: /\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/ }, { - begin: /<<[-~]?'?(\w+)\n(?:[^\n]*\n)*?\s*\1\b/, returnBegin: !0, contains: [{ - begin: /<<[-~]?'?/ }, n.END_SAME_AS_BEGIN({ begin: /(\w+)/, end: /(\w+)/, - contains: [n.BACKSLASH_ESCAPE, c] })] }] }, g = "[0-9](_?[0-9])*", l = { className: "number", - relevance: 0, variants: [{ - begin: `\\b([1-9](_?[0-9])*|0)(\\.(${g}))?([eE][+-]?(${g})|r)?i?\\b` }, { - begin: "\\b0[dD][0-9](_?[0-9])*r?i?\\b" }, { begin: "\\b0[bB][0-1](_?[0-1])*r?i?\\b", - }, { begin: "\\b0[oO][0-7](_?[0-7])*r?i?\\b" }, { - begin: "\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b" }, { - begin: "\\b0(_?[0-7])+r?i?\\b" }] }, o = { className: "params", begin: "\\(", end: "\\)", - endsParent: !0, keywords: s }, _ = [d, { className: "class", beginKeywords: "class module", - end: "$|;", illegal: /=/, contains: [n.inherit(n.TITLE_MODE, { - begin: "[A-Za-z_]\\w*(::\\w+)*(\\?|!)?" }), { begin: "<\\s*", contains: [{ - begin: "(" + n.IDENT_RE + "::)?" + n.IDENT_RE }] }].concat(t) }, { className: "function", - begin: e(/def\s*/, (a = i + "\\s*(\\(|;|$)", e("(?=", a, ")"))), keywords: "def", end: "$|;", - contains: [n.inherit(n.TITLE_MODE, { begin: i }), o].concat(t) }, { begin: n.IDENT_RE + "::", - }, { className: "symbol", begin: n.UNDERSCORE_IDENT_RE + "(!|\\?)?:", relevance: 0 }, { - className: "symbol", begin: ":(?!\\s)", contains: [d, { begin: i }], relevance: 0 }, l, { - className: "variable", - begin: "(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])" }, { - className: "params", begin: /\|/, end: /\|/, relevance: 0, keywords: s }, { - begin: "(" + n.RE_STARTERS_RE + "|unless)\\s*", keywords: "unless", contains: [{ - className: "regexp", contains: [n.BACKSLASH_ESCAPE, c], illegal: /\n/, variants: [{ - begin: "/", end: "/[a-z]*" }, { begin: /%r\{/, end: /\}[a-z]*/ }, { begin: "%r\\(", - end: "\\)[a-z]*" }, { begin: "%r!", end: "![a-z]*" }, { begin: "%r\\[", end: "\\][a-z]*" }], - }].concat(b, t), relevance: 0 }].concat(b, t); c.contains = _, o.contains = _; var E = [{ - begin: /^\s*=>/, starts: { end: "$", contains: _ } }, { className: "meta", - begin: "^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])", - starts: { end: "$", contains: _ } }]; return t.unshift(b), { name: "Ruby", - aliases: ["rb", "gemspec", "podspec", "thor", "irb"], keywords: s, illegal: /\/\*/, - contains: [n.SHEBANG({ binary: "ruby" })].concat(E).concat(t).concat(_) } - } -})()); hljs.registerLanguage("yaml", (() => { - "use strict"; return (e) => { - var n = "true false yes no null", a = "[\\w#;/?:@&=+$,.~*'()[\\]]+", s = { - className: "string", relevance: 0, variants: [{ begin: /'/, end: /'/ }, { begin: /"/, end: /"/, - }, { begin: /\S+/ }], contains: [e.BACKSLASH_ESCAPE, { className: "template-variable", - variants: [{ begin: /\{\{/, end: /\}\}/ }, { begin: /%\{/, end: /\}/ }] }] }, i = e.inherit(s, { - variants: [{ begin: /'/, end: /'/ }, { begin: /"/, end: /"/ }, { begin: /[^\s,{}[\]]+/ }] }), l = { - end: ",", endsWithParent: !0, excludeEnd: !0, contains: [], keywords: n, relevance: 0 }, t = { - begin: /\{/, end: /\}/, contains: [l], illegal: "\\n", relevance: 0 }, g = { begin: "\\[", - end: "\\]", contains: [l], illegal: "\\n", relevance: 0 }, b = [{ className: "attr", - variants: [{ begin: "\\w[\\w :\\/.-]*:(?=[ \t]|$)" }, { - begin: "\"\\w[\\w :\\/.-]*\":(?=[ \t]|$)" }, { begin: "'\\w[\\w :\\/.-]*':(?=[ \t]|$)", - }] }, { className: "meta", begin: "^---\\s*$", relevance: 10 }, { className: "string", - begin: "[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*" }, { - begin: "<%[%=-]?", end: "[%-]?%>", subLanguage: "ruby", excludeBegin: !0, excludeEnd: !0, - relevance: 0 }, { className: "type", begin: "!\\w+!" + a }, { className: "type", - begin: "!<" + a + ">" }, { className: "type", begin: "!" + a }, { className: "type", begin: "!!" + a, - }, { className: "meta", begin: "&" + e.UNDERSCORE_IDENT_RE + "$" }, { className: "meta", - begin: "\\*" + e.UNDERSCORE_IDENT_RE + "$" }, { className: "bullet", begin: "-(?=[ ]|$)", - relevance: 0 }, e.HASH_COMMENT_MODE, { beginKeywords: n, keywords: { literal: n } }, { - className: "number", - begin: "\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b", - }, { className: "number", begin: e.C_NUMBER_RE + "\\b", relevance: 0 }, t, g, s], r = [...b] - return r.pop(), r.push(i), l.contains = r, { name: "YAML", case_insensitive: !0, - aliases: ["yml", "YAML"], contains: b } - } -})()); hljs.registerLanguage("bash", (() => { - "use strict"; function e(...e) { - return e.map(((e) => { - return (s = e) ? "string" == typeof s ? s : s.source : null; var s - })).join("") - } return (s) => { - const n = {}, t = { begin: /\$\{/, end: /\}/, contains: ["self", { - begin: /:-/, contains: [n] }] }; Object.assign(n, { className: "variable", variants: [{ - begin: e(/\$[\w\d#@][\w\d_]*/, "(?![\\w\\d])(?![$])") }, t] }); const a = { - className: "subst", begin: /\$\(/, end: /\)/, contains: [s.BACKSLASH_ESCAPE] }, i = { - begin: /<<-?\s*(?=\w+)/, starts: { contains: [s.END_SAME_AS_BEGIN({ begin: /(\w+)/, - end: /(\w+)/, className: "string" })] } }, c = { className: "string", begin: /"/, end: /"/, - contains: [s.BACKSLASH_ESCAPE, n, a] }; a.contains.push(c); const o = { begin: /\$\(\(/, - end: /\)\)/, contains: [{ begin: /\d+#[0-9a-f]+/, className: "number" }, s.NUMBER_MODE, n], - }, r = s.SHEBANG({ binary: "(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)", relevance: 10, - }), l = { className: "function", begin: /\w[\w\d_]*\s*\(\s*\)\s*\{/, returnBegin: !0, - contains: [s.inherit(s.TITLE_MODE, { begin: /\w[\w\d_]*/ })], relevance: 0 }; return { - name: "Bash", aliases: ["sh", "zsh"], keywords: { $pattern: /\b[a-z._-]+\b/, - keyword: "if then else elif fi for while in do done case esac function", - literal: "true false", - built_in: "break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp", - }, contains: [r, s.SHEBANG(), l, o, s.HASH_COMMENT_MODE, i, c, { className: "", begin: /\\"/, - }, { className: "string", begin: /'/, end: /'/ }, n] } - } -})()); hljs.registerLanguage("go", (() => { - "use strict"; return (e) => { - const n = { - keyword: "break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune", - literal: "true false iota nil", - built_in: "append cap close complex copy imag len make new panic print println real recover delete", - }; return { name: "Go", aliases: ["golang"], keywords: n, illegal: " { - "use strict"; return (e) => { - var t = "@[a-z-]+", i = { - className: "variable", begin: "(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b" }, r = { - className: "number", begin: "#[0-9A-Fa-f]+" } - return e.CSS_NUMBER_MODE, e.QUOTE_STRING_MODE, - e.APOS_STRING_MODE, e.C_BLOCK_COMMENT_MODE, { name: "SCSS", case_insensitive: !0, - illegal: "[=/|']", contains: [e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE, { - className: "selector-id", begin: "#[A-Za-z0-9_-]+", relevance: 0 }, { - className: "selector-class", begin: "\\.[A-Za-z0-9_-]+", relevance: 0 }, { - className: "selector-attr", begin: "\\[", end: "\\]", illegal: "$" }, { - className: "selector-tag", - begin: "\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b", - relevance: 0 }, { className: "selector-pseudo", - begin: ":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)", - }, { className: "selector-pseudo", - begin: "::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)", - }, i, { className: "attribute", - begin: "\\b(src|z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b", - illegal: "[^\\s]" }, { - begin: "\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b", - }, { begin: ":", end: ";", - contains: [i, r, e.CSS_NUMBER_MODE, e.QUOTE_STRING_MODE, e.APOS_STRING_MODE, { - className: "meta", begin: "!important" }] }, { begin: "@(page|font-face)", lexemes: t, - keywords: "@page @font-face" }, { begin: "@", end: "[{;]", returnBegin: !0, - keywords: "and or not only", contains: [{ begin: t, className: "keyword", - }, i, e.QUOTE_STRING_MODE, e.APOS_STRING_MODE, r, e.CSS_NUMBER_MODE] }] } - } -})()); hljs.registerLanguage("less", (() => { - "use strict"; return (e) => { - var n = "([\\w-]+|@\\{[\\w-]+\\})", a = [], s = [], t = e => ({ className: "string", - begin: "~?" + e + ".*?" + e }), r = (e, n, a) => ({ className: e, begin: n, relevance: a }), i = { - begin: "\\(", end: "\\)", contains: s, relevance: 0 } - s.push(e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE, t("'"), t("\""), e.CSS_NUMBER_MODE, { - begin: "(url|data-uri)\\(", starts: { className: "string", end: "[\\)\\n]", - excludeEnd: !0 }, - }, r("number", "#[0-9A-Fa-f]+\\b"), i, r("variable", "@@?[\\w-]+", 10), r("variable", "@\\{[\\w-]+\\}"), r("built_in", "~?`[^`]*?`"), { - className: "attribute", begin: "[\\w-]+\\s*:", end: ":", returnBegin: !0, excludeEnd: !0, - }, { className: "meta", begin: "!important" }); var c = s.concat({ begin: /\{/, end: /\}/, - contains: a }), l = { beginKeywords: "when", endsWithParent: !0, contains: [{ - beginKeywords: "and not" }].concat(s) }, g = { begin: n + "\\s*:", returnBegin: !0, - end: "[;}]", relevance: 0, contains: [{ className: "attribute", begin: n, end: ":", - excludeEnd: !0, starts: { endsWithParent: !0, illegal: "[<=$]", relevance: 0, contains: s }, - }] }, d = { className: "keyword", - begin: "@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b", - starts: { end: "[;{}]", returnEnd: !0, contains: s, relevance: 0 } }, o = { - className: "variable", variants: [{ begin: "@[\\w-]+\\s*:", relevance: 15 }, { - begin: "@[\\w-]+" }], starts: { end: "[;}]", returnEnd: !0, contains: c } }, b = { variants: [{ - begin: "[\\.#:&\\[>]", end: "[;{}]" }, { begin: n, end: /\{/ }], returnBegin: !0, - returnEnd: !0, illegal: "[<='$\"]", relevance: 0, - contains: [e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE, l, r("keyword", "all\\b"), r("variable", "@\\{[\\w-]+\\}"), r("selector-tag", n + "%?", 0), r("selector-id", "#" + n), r("selector-class", "\\." + n, 0), r("selector-tag", "&", 0), { - className: "selector-attr", begin: "\\[", end: "\\]" }, { className: "selector-pseudo", - begin: /:(:)?[a-zA-Z0-9_\-+()"'.]+/ }, { begin: "\\(", end: "\\)", contains: c }, { - begin: "!important" }] } - return a.push(e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE, d, o, g, b), { - name: "Less", case_insensitive: !0, illegal: "[=>'/<($\"]", contains: a } - } -})()); hljs.registerLanguage("objectivec", (() => { - "use strict"; return (e) => { - const n = /[a-zA-Z@][a-zA-Z0-9_]*/, _ = { $pattern: n, - keyword: "@interface @class @protocol @implementation" }; return { - name: "Objective-C", aliases: ["mm", "objc", "obj-c", "obj-c++", "objective-c++"], - keywords: { $pattern: n, - keyword: "int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN", - literal: "false true FALSE TRUE nil YES NO NULL", - built_in: "BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once", - }, illegal: "/, end: /$/, - illegal: "\\n" }, e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE] }, { - className: "class", begin: "(" + _.keyword.split(" ").join("|") + ")\\b", end: /(\{|$)/, - excludeEnd: !0, keywords: _, contains: [e.UNDERSCORE_TITLE_MODE] }, { - begin: "\\." + e.UNDERSCORE_IDENT_RE, relevance: 0 }] } - } -})()); hljs.registerLanguage("json", (() => { - "use strict"; return (n) => { - const e = { - literal: "true false null", - }, i = [n.C_LINE_COMMENT_MODE, n.C_BLOCK_COMMENT_MODE], a = [n.QUOTE_STRING_MODE, n.C_NUMBER_MODE], l = { - end: ",", endsWithParent: !0, excludeEnd: !0, contains: a, keywords: e }, t = { begin: /\{/, - end: /\}/, contains: [{ className: "attr", begin: /"/, end: /"/, - contains: [n.BACKSLASH_ESCAPE], illegal: "\\n" }, n.inherit(l, { begin: /:/, - })].concat(i), illegal: "\\S" }, s = { begin: "\\[", end: "\\]", contains: [n.inherit(l)], - illegal: "\\S" }; return a.push(t, s), i.forEach(((n) => { a.push(n) })), { name: "JSON", - contains: a, keywords: e, illegal: "\\S" } - } -})()); hljs.registerLanguage("lua", (() => { - "use strict"; return (e) => { - const t = "\\[=*\\[", a = "\\]=*\\]", n = { begin: t, end: a, contains: ["self"], - }, o = [e.COMMENT("--(?!\\[=*\\[)", "$"), e.COMMENT("--\\[=*\\[", a, { contains: [n], - relevance: 10 })]; return { name: "Lua", keywords: { $pattern: e.UNDERSCORE_IDENT_RE, - literal: "true false nil", - keyword: "and break do else elseif end for goto if in local not or repeat return then until while", - built_in: "_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove", - }, contains: o.concat([{ className: "function", beginKeywords: "function", end: "\\)", - contains: [e.inherit(e.TITLE_MODE, { - begin: "([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*" }), { className: "params", - begin: "\\(", endsWithParent: !0, contains: o }].concat(o), - }, e.C_NUMBER_MODE, e.APOS_STRING_MODE, e.QUOTE_STRING_MODE, { className: "string", - begin: t, end: a, contains: [n], relevance: 5 }]) } - } -})()); hljs.registerLanguage("rust", (() => { - "use strict"; return (e) => { - const n = "([ui](8|16|32|64|128|size)|f(32|64))?", t = "drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!" - return { name: "Rust", aliases: ["rs"], keywords: { $pattern: e.IDENT_RE + "!?", - keyword: "abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield", - literal: "true false Some None Ok Err", built_in: t }, illegal: "" }] } - } -})()); hljs.registerLanguage("php", (() => { - "use strict"; return (e) => { - const r = { - className: "variable", - begin: "\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$])" }, t = { - className: "meta", variants: [{ begin: /<\?php/, relevance: 10 }, { begin: /<\?[=]?/ }, { - begin: /\?>/ }] }, a = { className: "subst", variants: [{ begin: /\$\w+/ }, { begin: /\{\$/, - end: /\}/ }] }, n = e.inherit(e.APOS_STRING_MODE, { illegal: null, - }), i = e.inherit(e.QUOTE_STRING_MODE, { illegal: null, - contains: e.QUOTE_STRING_MODE.contains.concat(a) }), o = e.END_SAME_AS_BEGIN({ - begin: /<<<[ \t]*(\w+)\n/, end: /[ \t]*(\w+)\b/, - contains: e.QUOTE_STRING_MODE.contains.concat(a) }), l = { className: "string", - contains: [e.BACKSLASH_ESCAPE, t], variants: [e.inherit(n, { begin: "b'", end: "'", - }), e.inherit(i, { begin: "b\"", end: "\"" }), i, n, o] }, c = { - variants: [e.BINARY_NUMBER_MODE, e.C_NUMBER_MODE] }, s = { - keyword: "__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 new object or private protected public real return string switch throw trait try unset use var void while xor yield", - literal: "false null true", - built_in: "Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Throwable Traversable WeakReference Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass", - }; return { aliases: ["php", "php3", "php4", "php5", "php6", "php7", "php8"], - case_insensitive: !0, keywords: s, - contains: [e.HASH_COMMENT_MODE, e.COMMENT("//", "$", { contains: [t], - }), e.COMMENT("/\\*", "\\*/", { contains: [{ className: "doctag", begin: "@[A-Za-z]+" }], - }), e.COMMENT("__halt_compiler.+?;", !1, { endsWithParent: !0, - keywords: "__halt_compiler" }), t, { className: "keyword", begin: /\$this\b/ }, r, { - begin: /(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/ }, { className: "function", - relevance: 0, beginKeywords: "fn function", end: /[;{]/, excludeEnd: !0, - illegal: "[$%\\[]", contains: [e.UNDERSCORE_TITLE_MODE, { begin: "=>" }, { - className: "params", begin: "\\(", end: "\\)", excludeBegin: !0, excludeEnd: !0, - keywords: s, contains: ["self", r, e.C_BLOCK_COMMENT_MODE, l, c] }] }, { className: "class", - beginKeywords: "class interface", relevance: 0, end: /\{/, excludeEnd: !0, - illegal: /[:($"]/, contains: [{ beginKeywords: "extends implements", - }, e.UNDERSCORE_TITLE_MODE] }, { beginKeywords: "namespace", relevance: 0, end: ";", - illegal: /[.']/, contains: [e.UNDERSCORE_TITLE_MODE] }, { beginKeywords: "use", - relevance: 0, end: ";", contains: [e.UNDERSCORE_TITLE_MODE] }, l, c] } - } -})()); hljs.registerLanguage("c", (() => { - "use strict"; function e(e) { - return ((...e) => e.map((e => (e => e ? "string" == typeof e ? e : e.source : null)(e))).join(""))("(", e, ")?") - } return (t) => { - const n = ((t) => { - const n = t.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }], - }), r = "[a-zA-Z_]\\w*::", a = "(decltype\\(auto\\)|" + e(r) + "[a-zA-Z_]\\w*" + e("<[^<>]+>") + ")", s = { - className: "keyword", begin: "\\b[a-z\\d_]*_t\\b" }, i = { className: "string", - variants: [{ begin: "(u8?|U|L)?\"", end: "\"", illegal: "\\n", - contains: [t.BACKSLASH_ESCAPE] }, { - begin: "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", - end: "'", illegal: "." }, t.END_SAME_AS_BEGIN({ - begin: /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/, end: /\)([^()\\ ]{0,16})"/ })] }, o = { - className: "number", variants: [{ begin: "\\b(0b[01']+)" }, { - begin: "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)", - }, { - begin: "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)", - }], relevance: 0 }, c = { className: "meta", begin: /#\s*[a-z]+\b/, end: /$/, keywords: { - "meta-keyword": "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include", - }, contains: [{ begin: /\\\n/, relevance: 0 }, t.inherit(i, { className: "meta-string" }), { - className: "meta-string", begin: /<.*?>/, end: /$/, illegal: "\\n", - }, n, t.C_BLOCK_COMMENT_MODE] }, l = { className: "title", begin: e(r) + t.IDENT_RE, - relevance: 0 }, d = e(r) + t.IDENT_RE + "\\s*\\(", u = { - keyword: "int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq", - built_in: "std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary", - literal: "true false nullptr NULL" }, m = [c, s, n, t.C_BLOCK_COMMENT_MODE, o, i], p = { - variants: [{ begin: /=/, end: /;/ }, { begin: /\(/, end: /\)/ }, { - beginKeywords: "new throw return else", end: /;/ }], keywords: u, contains: m.concat([{ - begin: /\(/, end: /\)/, keywords: u, contains: m.concat(["self"]), relevance: 0 }]), - relevance: 0 }, _ = { className: "function", begin: "(" + a + "[\\*&\\s]+)+" + d, - returnBegin: !0, end: /[{;=]/, excludeEnd: !0, keywords: u, illegal: /[^\w\s\*&:<>.]/, - contains: [{ begin: "decltype\\(auto\\)", keywords: u, relevance: 0 }, { begin: d, - returnBegin: !0, contains: [l], relevance: 0 }, { className: "params", begin: /\(/, - end: /\)/, keywords: u, relevance: 0, contains: [n, t.C_BLOCK_COMMENT_MODE, i, o, s, { - begin: /\(/, end: /\)/, keywords: u, relevance: 0, - contains: ["self", n, t.C_BLOCK_COMMENT_MODE, i, o, s] }], - }, s, n, t.C_BLOCK_COMMENT_MODE, c] }; return { - aliases: ["c", "cc", "h", "c++", "h++", "hpp", "hh", "hxx", "cxx"], keywords: u, - disableAutodetect: !0, illegal: "", keywords: u, contains: ["self", s] }, { begin: t.IDENT_RE + "::", keywords: u }, { - className: "class", beginKeywords: "enum class struct union", end: /[{;:<>=]/, - contains: [{ beginKeywords: "final class struct" }, t.TITLE_MODE] }]), exports: { - preprocessor: c, strings: i, keywords: u } } - })(t) - return n.name = "C", n.aliases = ["c", "h"], n - } -})()); hljs.registerLanguage("css", (() => { - "use strict"; return (e) => { - var n = "[a-zA-Z-][a-zA-Z0-9_-]*", a = { - begin: /([*]\s?)?(?:[A-Z_.\-\\]+|--[a-zA-Z0-9_-]+)\s*(\/\*\*\/)?:/, - returnBegin: !0, end: ";", endsWithParent: !0, contains: [{ className: "attribute", - begin: /\S/, end: ":", excludeEnd: !0, starts: { endsWithParent: !0, excludeEnd: !0, - contains: [{ begin: /[\w-]+\(/, returnBegin: !0, contains: [{ className: "built_in", - begin: /[\w-]+/ }, { begin: /\(/, end: /\)/, - contains: [e.APOS_STRING_MODE, e.QUOTE_STRING_MODE, e.CSS_NUMBER_MODE] }], - }, e.CSS_NUMBER_MODE, e.QUOTE_STRING_MODE, e.APOS_STRING_MODE, e.C_BLOCK_COMMENT_MODE, { - className: "number", begin: "#[0-9A-Fa-f]+" }, { className: "meta", begin: "!important" }], - } }] }; return { name: "CSS", case_insensitive: !0, illegal: /[=|'\$]/, - contains: [e.C_BLOCK_COMMENT_MODE, { className: "selector-id", - begin: /#[A-Za-z0-9_-]+/ }, { className: "selector-class", begin: "\\." + n }, { - className: "selector-attr", begin: /\[/, end: /\]/, illegal: "$", - contains: [e.APOS_STRING_MODE, e.QUOTE_STRING_MODE] }, { className: "selector-pseudo", - begin: /:(:)?[a-zA-Z0-9_+()"'.-]+/ }, { begin: "@(page|font-face)", - lexemes: "@[a-z-]+", keywords: "@page @font-face" }, { begin: "@", end: "[{;]", - illegal: /:/, returnBegin: !0, contains: [{ className: "keyword", - begin: /@-?\w[\w]*(-\w+)*/ }, { begin: /\s/, endsWithParent: !0, excludeEnd: !0, - relevance: 0, keywords: "and or not only", contains: [{ begin: /[a-z-]+:/, - className: "attribute" }, e.APOS_STRING_MODE, e.QUOTE_STRING_MODE, e.CSS_NUMBER_MODE], - }] }, { className: "selector-tag", begin: n, relevance: 0 }, { begin: /\{/, end: /\}/, - illegal: /\S/, contains: [e.C_BLOCK_COMMENT_MODE, { begin: /;/ }, a] }] } - } -})()); hljs.registerLanguage("python", (() => { - "use strict"; return (e) => { - const n = { - keyword: "and as assert async await break class continue def del elif else except finally for from global if import in is lambda nonlocal|10 not or pass raise return try while with yield", - built_in: "__import__ abs all any ascii bin bool breakpoint bytearray bytes callable chr classmethod compile complex delattr dict dir divmod enumerate eval exec filter float format frozenset getattr globals hasattr hash help hex id input int isinstance issubclass iter len list locals map max memoryview min next object oct open ord pow print property range repr reversed round set setattr slice sorted staticmethod str sum super tuple type vars zip", - literal: "__debug__ Ellipsis False None NotImplemented True" }, a = { - className: "meta", begin: /^(>>>|\.\.\.) / }, s = { className: "subst", begin: /\{/, - end: /\}/, keywords: n, illegal: /#/ }, i = { begin: /\{\{/, relevance: 0 }, r = { - className: "string", contains: [e.BACKSLASH_ESCAPE], variants: [{ - begin: /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/, end: /'''/, - contains: [e.BACKSLASH_ESCAPE, a], relevance: 10 }, { - begin: /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/, end: /"""/, - contains: [e.BACKSLASH_ESCAPE, a], relevance: 10 }, { - begin: /([fF][rR]|[rR][fF]|[fF])'''/, end: /'''/, - contains: [e.BACKSLASH_ESCAPE, a, i, s] }, { begin: /([fF][rR]|[rR][fF]|[fF])"""/, - end: /"""/, contains: [e.BACKSLASH_ESCAPE, a, i, s] }, { begin: /([uU]|[rR])'/, end: /'/, - relevance: 10 }, { begin: /([uU]|[rR])"/, end: /"/, relevance: 10 }, { - begin: /([bB]|[bB][rR]|[rR][bB])'/, end: /'/ }, { begin: /([bB]|[bB][rR]|[rR][bB])"/, - end: /"/ }, { begin: /([fF][rR]|[rR][fF]|[fF])'/, end: /'/, - contains: [e.BACKSLASH_ESCAPE, i, s] }, { begin: /([fF][rR]|[rR][fF]|[fF])"/, end: /"/, - contains: [e.BACKSLASH_ESCAPE, i, s] }, e.APOS_STRING_MODE, e.QUOTE_STRING_MODE], - }, t = "[0-9](_?[0-9])*", l = `(\\b(${t}))?\\.(${t})|\\b(${t})\\.`, b = { - className: "number", relevance: 0, variants: [{ - begin: `(\\b(${t})|(${l}))[eE][+-]?(${t})[jJ]?\\b` }, { begin: `(${l})[jJ]?` }, { - begin: "\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b" }, { - begin: "\\b0[bB](_?[01])+[lL]?\\b" }, { begin: "\\b0[oO](_?[0-7])+[lL]?\\b" }, { - begin: "\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b" }, { begin: `\\b(${t})[jJ]\\b` }] }, o = { - className: "params", variants: [{ begin: /\(\s*\)/, skip: !0, className: null }, { - begin: /\(/, end: /\)/, excludeBegin: !0, excludeEnd: !0, keywords: n, - contains: ["self", a, b, r, e.HASH_COMMENT_MODE] }] }; return s.contains = [r, b, a], { - name: "Python", aliases: ["py", "gyp", "ipython"], keywords: n, - illegal: /(<\/|->|\?)|=>/, contains: [a, b, { begin: /\bself\b/ }, { beginKeywords: "if", - relevance: 0 }, r, e.HASH_COMMENT_MODE, { variants: [{ className: "function", - beginKeywords: "def" }, { className: "class", beginKeywords: "class" }], end: /:/, - illegal: /[${=;\n,]/, contains: [e.UNDERSCORE_TITLE_MODE, o, { begin: /->/, - endsWithParent: !0, keywords: "None" }] }, { className: "meta", begin: /^[\t ]*@/, - end: /(?=#)|$/, contains: [b, o, r] }, { begin: /\b(print|exec)\(/ }] } - } -})()); hljs.registerLanguage("sql", (() => { - "use strict"; function e(e) { - return e ? "string" == typeof e ? e : e.source : null - } function r(...r) { - return r.map((r => e(r))).join("") - } function t(...r) { - return "(" + r.map((r => e(r))).join("|") + ")" - } return (e) => { - const n = e.COMMENT("--", "$"), a = ["true", "false", "unknown"], i = ["bigint", "binary", "blob", "boolean", "char", "character", "clob", "date", "dec", "decfloat", "decimal", "float", "int", "integer", "interval", "nchar", "nclob", "national", "numeric", "real", "row", "smallint", "time", "timestamp", "varchar", "varying", "varbinary"], s = ["abs", "acos", "array_agg", "asin", "atan", "avg", "cast", "ceil", "ceiling", "coalesce", "corr", "cos", "cosh", "count", "covar_pop", "covar_samp", "cume_dist", "dense_rank", "deref", "element", "exp", "extract", "first_value", "floor", "json_array", "json_arrayagg", "json_exists", "json_object", "json_objectagg", "json_query", "json_table", "json_table_primitive", "json_value", "lag", "last_value", "lead", "listagg", "ln", "log", "log10", "lower", "max", "min", "mod", "nth_value", "ntile", "nullif", "percent_rank", "percentile_cont", "percentile_disc", "position", "position_regex", "power", "rank", "regr_avgx", "regr_avgy", "regr_count", "regr_intercept", "regr_r2", "regr_slope", "regr_sxx", "regr_sxy", "regr_syy", "row_number", "sin", "sinh", "sqrt", "stddev_pop", "stddev_samp", "substring", "substring_regex", "sum", "tan", "tanh", "translate", "translate_regex", "treat", "trim", "trim_array", "unnest", "upper", "value_of", "var_pop", "var_samp", "width_bucket"], o = ["create table", "insert into", "primary key", "foreign key", "not null", "alter table", "add constraint", "grouping sets", "on overflow", "character set", "respect nulls", "ignore nulls", "nulls first", "nulls last", "depth first", "breadth first"], c = s, l = ["abs", "acos", "all", "allocate", "alter", "and", "any", "are", "array", "array_agg", "array_max_cardinality", "as", "asensitive", "asin", "asymmetric", "at", "atan", "atomic", "authorization", "avg", "begin", "begin_frame", "begin_partition", "between", "bigint", "binary", "blob", "boolean", "both", "by", "call", "called", "cardinality", "cascaded", "case", "cast", "ceil", "ceiling", "char", "char_length", "character", "character_length", "check", "classifier", "clob", "close", "coalesce", "collate", "collect", "column", "commit", "condition", "connect", "constraint", "contains", "convert", "copy", "corr", "corresponding", "cos", "cosh", "count", "covar_pop", "covar_samp", "create", "cross", "cube", "cume_dist", "current", "current_catalog", "current_date", "current_default_transform_group", "current_path", "current_role", "current_row", "current_schema", "current_time", "current_timestamp", "current_path", "current_role", "current_transform_group_for_type", "current_user", "cursor", "cycle", "date", "day", "deallocate", "dec", "decimal", "decfloat", "declare", "default", "define", "delete", "dense_rank", "deref", "describe", "deterministic", "disconnect", "distinct", "double", "drop", "dynamic", "each", "element", "else", "empty", "end", "end_frame", "end_partition", "end-exec", "equals", "escape", "every", "except", "exec", "execute", "exists", "exp", "external", "extract", "false", "fetch", "filter", "first_value", "float", "floor", "for", "foreign", "frame_row", "free", "from", "full", "function", "fusion", "get", "global", "grant", "group", "grouping", "groups", "having", "hold", "hour", "identity", "in", "indicator", "initial", "inner", "inout", "insensitive", "insert", "int", "integer", "intersect", "intersection", "interval", "into", "is", "join", "json_array", "json_arrayagg", "json_exists", "json_object", "json_objectagg", "json_query", "json_table", "json_table_primitive", "json_value", "lag", "language", "large", "last_value", "lateral", "lead", "leading", "left", "like", "like_regex", "listagg", "ln", "local", "localtime", "localtimestamp", "log", "log10", "lower", "match", "match_number", "match_recognize", "matches", "max", "member", "merge", "method", "min", "minute", "mod", "modifies", "module", "month", "multiset", "national", "natural", "nchar", "nclob", "new", "no", "none", "normalize", "not", "nth_value", "ntile", "null", "nullif", "numeric", "octet_length", "occurrences_regex", "of", "offset", "old", "omit", "on", "one", "only", "open", "or", "order", "out", "outer", "over", "overlaps", "overlay", "parameter", "partition", "pattern", "per", "percent", "percent_rank", "percentile_cont", "percentile_disc", "period", "portion", "position", "position_regex", "power", "precedes", "precision", "prepare", "primary", "procedure", "ptf", "range", "rank", "reads", "real", "recursive", "ref", "references", "referencing", "regr_avgx", "regr_avgy", "regr_count", "regr_intercept", "regr_r2", "regr_slope", "regr_sxx", "regr_sxy", "regr_syy", "release", "result", "return", "returns", "revoke", "right", "rollback", "rollup", "row", "row_number", "rows", "running", "savepoint", "scope", "scroll", "search", "second", "seek", "select", "sensitive", "session_user", "set", "show", "similar", "sin", "sinh", "skip", "smallint", "some", "specific", "specifictype", "sql", "sqlexception", "sqlstate", "sqlwarning", "sqrt", "start", "static", "stddev_pop", "stddev_samp", "submultiset", "subset", "substring", "substring_regex", "succeeds", "sum", "symmetric", "system", "system_time", "system_user", "table", "tablesample", "tan", "tanh", "then", "time", "timestamp", "timezone_hour", "timezone_minute", "to", "trailing", "translate", "translate_regex", "translation", "treat", "trigger", "trim", "trim_array", "true", "truncate", "uescape", "union", "unique", "unknown", "unnest", "update ", "upper", "user", "using", "value", "values", "value_of", "var_pop", "var_samp", "varbinary", "varchar", "varying", "versioning", "when", "whenever", "where", "width_bucket", "window", "with", "within", "without", "year", "add", "asc", "collation", "desc", "final", "first", "last", "view"].filter((e => !s.includes(e))), u = { - begin: r(/\b/, t(...c), /\s*\(/), keywords: { built_in: c.join(" ") } }; return { - name: "SQL", case_insensitive: !0, illegal: /[{}]|<\//, keywords: { - $pattern: /\b[\w\.]+/, keyword: ((e, { exceptions: r, when: t } = {}) => { - const n = t - return r = r || [], e.map((e => e.match(/\|\d+$/) || r.includes(e) ? e : n(e) ? e + "|0" : e)) - })(l, { when: e => e.length < 3 }).join(" "), literal: a.join(" "), type: i.join(" "), - built_in: "current_catalog current_date current_default_transform_group current_path current_role current_schema current_transform_group_for_type current_user session_user system_time system_user current_time localtime current_timestamp localtimestamp", - }, contains: [{ begin: t(...o), keywords: { $pattern: /[\w\.]+/, - keyword: l.concat(o).join(" "), literal: a.join(" "), type: i.join(" ") } }, { - className: "type", - begin: t("double precision", "large object", "with timezone", "without timezone"), - }, u, { className: "variable", begin: /@[a-z0-9]+/ }, { className: "string", variants: [{ - begin: /'/, end: /'/, contains: [{ begin: /''/ }] }] }, { begin: /"/, end: /"/, contains: [{ - begin: /""/ }] }, e.C_NUMBER_MODE, e.C_BLOCK_COMMENT_MODE, n, { className: "operator", - begin: /[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/, relevance: 0 }] } - } -})()); hljs.registerLanguage("ini", (() => { - "use strict"; function e(e) { - return e ? "string" == typeof e ? e : e.source : null - } function n(...n) { - return n.map((n => e(n))).join("") - } return (s) => { - const a = { className: "number", - relevance: 0, variants: [{ begin: /([+-]+)?[\d]+_[\d_]+/ }, { begin: s.NUMBER_RE }], - }, i = s.COMMENT(); i.variants = [{ begin: /;/, end: /$/ }, { begin: /#/, end: /$/ }]; const t = { - className: "variable", variants: [{ begin: /\$[\w\d"][\w\d_]*/ }, { begin: /\$\{(.*?)\}/, - }] }, r = { className: "literal", begin: /\bon|off|true|false|yes|no\b/ }, l = { - className: "string", contains: [s.BACKSLASH_ESCAPE], variants: [{ begin: "'''", - end: "'''", relevance: 10 }, { begin: "\"\"\"", end: "\"\"\"", relevance: 10 }, { begin: "\"", end: "\"", - }, { begin: "'", end: "'" }] }, c = { begin: /\[/, end: /\]/, contains: [i, r, t, l, a, "self"], - relevance: 0, - }, g = "(" + [/[A-Za-z0-9_-]+/, /"(\\"|[^"])*"/, /'[^']*'/].map((n => e(n))).join("|") + ")" - return { name: "TOML, also INI", aliases: ["toml"], case_insensitive: !0, illegal: /\S/, - contains: [i, { className: "section", begin: /\[+/, end: /\]+/ }, { - begin: n(g, "(\\s*\\.\\s*", g, ")*", n("(?=", /\s*=\s*[^#\s]/, ")")), className: "attr", - starts: { end: /$/, contains: [i, c, r, t, l, a] } }] } - } -})()); hljs.registerLanguage("javascript", (() => { - "use strict" - const e = "[A-Za-z$_][0-9A-Za-z$_]*", n = ["as", "in", "of", "if", "for", "while", "finally", "var", "new", "function", "do", "return", "void", "else", "break", "catch", "instanceof", "with", "throw", "case", "default", "try", "switch", "continue", "typeof", "delete", "let", "yield", "const", "class", "debugger", "async", "await", "static", "import", "from", "export", "extends"], a = ["true", "false", "null", "undefined", "NaN", "Infinity"], s = [].concat(["setInterval", "setTimeout", "clearInterval", "clearTimeout", "require", "exports", "eval", "isFinite", "isNaN", "parseFloat", "parseInt", "decodeURI", "decodeURIComponent", "encodeURI", "encodeURIComponent", "escape", "unescape"], ["arguments", "this", "super", "console", "window", "document", "localStorage", "module", "global"], ["Intl", "DataView", "Number", "Math", "Date", "String", "RegExp", "Object", "Function", "Boolean", "Error", "Symbol", "Set", "Map", "WeakSet", "WeakMap", "Proxy", "Reflect", "JSON", "Promise", "Float64Array", "Int16Array", "Int32Array", "Int8Array", "Uint16Array", "Uint32Array", "Float32Array", "Array", "Uint8Array", "Uint8ClampedArray", "ArrayBuffer"], ["EvalError", "InternalError", "RangeError", "ReferenceError", "SyntaxError", "TypeError", "URIError"]) - function r(e) { return i("(?=", e, ")") } function i(...e) { - return e.map(((e) => { - return (n = e) ? "string" == typeof n ? n : n.source : null; var n - })).join("") - } return (t) => { - const c = e, o = { begin: /<[A-Za-z0-9\\._:-]+/, end: /\/[A-Za-z0-9\\._:-]+>|\/>/, - isTrulyOpeningTag: (e, n) => { - const a = e[0].length + e.index, s = e.input[a] - "<" !== s - ? ">" === s && (((e, { after: n }) => { - const a = "", - returnBegin: !0, end: "\\s*=>", contains: [{ className: "params", variants: [{ - begin: t.UNDERSCORE_IDENT_RE, relevance: 0 }, { className: null, begin: /\(\s*\)/, skip: !0, - }, { begin: /\(/, end: /\)/, excludeBegin: !0, excludeEnd: !0, keywords: l, contains: A }] }], - }, { begin: /,/, relevance: 0 }, { className: "", begin: /\s/, end: /\s*/, skip: !0 }, { - variants: [{ begin: "<>", end: "" }, { "begin": o.begin, "on:begin": o.isTrulyOpeningTag, - "end": o.end }], subLanguage: "xml", contains: [{ begin: o.begin, end: o.end, skip: !0, - contains: ["self"] }] }], relevance: 0 }, { className: "function", - beginKeywords: "function", end: /[{;]/, excludeEnd: !0, keywords: l, - contains: ["self", t.inherit(t.TITLE_MODE, { begin: c }), p], illegal: /%/ }, { - beginKeywords: "while if switch catch for" }, { className: "function", - begin: t.UNDERSCORE_IDENT_RE + "\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{", - returnBegin: !0, contains: [p, t.inherit(t.TITLE_MODE, { begin: c })] }, { variants: [{ - begin: "\\." + c }, { begin: "\\$" + c }], relevance: 0 }, { className: "class", - beginKeywords: "class", end: /[{;=]/, excludeEnd: !0, illegal: /[:"[\]]/, contains: [{ - beginKeywords: "extends" }, t.UNDERSCORE_TITLE_MODE] }, { begin: /\b(?=constructor)/, - end: /[{;]/, excludeEnd: !0, contains: [t.inherit(t.TITLE_MODE, { begin: c }), "self", p], - }, { begin: "(get|set)\\s+(?=" + c + "\\()", end: /\{/, keywords: "get set", - contains: [t.inherit(t.TITLE_MODE, { begin: c }), { begin: /\(\)/ }, p] }, { begin: /\$[(.]/ }], - } - } -})()) diff --git a/public/static/js/initPost.js b/public/static/js/initPost.js index d32f4ea..e94c072 100644 --- a/public/static/js/initPost.js +++ b/public/static/js/initPost.js @@ -5,9 +5,7 @@ document.head.appendChild(scriptMd5) scriptMd5.onload = function () { console.log("md5.js loaded") - // step1. sythx highlighting - syntaxHighlight() - // step2. lazyload + // step1. lazyload initLazyLoad() } @@ -81,31 +79,3 @@ function renderStyle(sign, percent) { } };` } - -function syntaxHighlight() { - var script = document.createElement("script") - script.src = "/static/js/hljs.js" - document.head.appendChild(script) - - var styleLight = document.createElement("link") - styleLight.rel = "stylesheet" - styleLight.href = "/static/css/stackoverflow-light.min.css" - - var styleDark = document.createElement("link") - styleDark.rel = "stylesheet" - styleDark.href = "/static/css/stackoverflow-dark.min.css" - - if (document.querySelector("body").classList.contains("theme-dark")) { - document.head.appendChild(styleDark) - } - else { - document.head.appendChild(styleLight) - } - - script.onload = function () { - console.log("hljs.js loaded") - document.querySelectorAll("pre code").forEach(function (block) { - hljs.highlightBlock(block) - }) - } -} diff --git a/src/components/header/HeaderNavigation.tsx b/src/components/header/HeaderNavigation.tsx index cb9d537..85fbee8 100644 --- a/src/components/header/HeaderNavigation.tsx +++ b/src/components/header/HeaderNavigation.tsx @@ -1,6 +1,7 @@ import { useState } from "react" import { Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarMenuToggle, NavbarMenu, NavbarMenuItem, Link } from "@nextui-org/react" import { SITE_TITLE } from "../../consts" +import CALogoWhite from "./assets/CA-logo-white.png" export default function App() { const [isMenuOpen, setIsMenuOpen] = useState(false) @@ -31,10 +32,16 @@ export default function App() { window.location.href = "/"} /> - + window.location.href = "/"} + /> + {SITE_TITLE} diff --git a/src/components/header/assets/CA-logo-white.png b/src/components/header/assets/CA-logo-white.png new file mode 100644 index 0000000..37258b5 Binary files /dev/null and b/src/components/header/assets/CA-logo-white.png differ diff --git a/src/pages/posts/blogs/Tech/Git/basicprocess.md b/src/pages/posts/blogs/Tech/Git/basicprocess.md index 952922a..93592f6 100644 --- a/src/pages/posts/blogs/Tech/Git/basicprocess.md +++ b/src/pages/posts/blogs/Tech/Git/basicprocess.md @@ -5,7 +5,7 @@ pubDate: 2024-10-13 description: ' ' author: 'zzh0u' tags: ["技术","开发","Git"] -theme: 'white' +theme: 'dark' featured: true --- diff --git a/src/plugins/cover.ts b/src/plugins/cover.ts new file mode 100644 index 0000000..2c30618 --- /dev/null +++ b/src/plugins/cover.ts @@ -0,0 +1,33 @@ +import path from "path" +import { type RehypePlugin } from "@astrojs/markdown-remark" +import { convertImageToBase64URL } from "../utils/image" + +export const handleLocalCoverPlugin: RehypePlugin = () => { + return async (tree, file) => { + const filePath = file.history[0] + type AstroData = { + frontmatter: { + cover: { url: string } | string | undefined + } + } + const astroData = file.data.astro as AstroData + if (!astroData.frontmatter.cover) { + return + } + const coverUrl = typeof astroData.frontmatter.cover === "string" ? astroData.frontmatter.cover : astroData.frontmatter.cover.url + if (coverUrl.includes("http")) { + return + } + if (coverUrl.includes("base64")) { + return + } + const url = path.resolve(path.dirname(filePath), coverUrl) + const dataURL = await convertImageToBase64URL(url) + if (typeof astroData.frontmatter.cover === "string") { + astroData.frontmatter.cover = dataURL + } + else { + astroData.frontmatter.cover.url = dataURL + } + } +} diff --git a/src/plugins/theme.ts b/src/plugins/theme.ts new file mode 100644 index 0000000..4a75a0a --- /dev/null +++ b/src/plugins/theme.ts @@ -0,0 +1,185 @@ +import { type RehypePlugin } from "@astrojs/markdown-remark" +import type { RehypePlugins } from "astro" +import { visit } from "unist-util-visit" +import md5 from "md5" + +export const addSeparator: RehypePlugin = () => + (tree) => { + const len = tree.children.length + for (let index = 0; index < len; index++) { + const node = tree.children[index] + if (node.type === "element" && node.tagName === "figure") { + tree.children.splice(index, 0, { + type: "element", + tagName: "div", + properties: { + className: ["tertiary-nav component"], + }, + children: [ + { + type: "element", + tagName: "div", + properties: { + className: ["component-content"], + }, + children: [], + }, + ], + }) + index++ + } + } + } +const image: RehypePlugin = () => (tree) => { + visit(tree, "element", (node) => { + if (node.tagName === "p" && node.children[0].tagName === "img") { + node.tagName = "figure" + const img = node.children[0] + const sign = md5(img.properties.src) + const data = img.properties.alt.split("|") + const alt = data[0] + let size = "big" + if (data.length > 1) { + size = data[1] + } + const classes = ["image component image-full-bleed body-copy-wide nr-scroll-animation nr-scroll-animation--on"] + classes.push(`image-${size}`) + node.properties.className = classes + node.children = [ + { + type: "element", + tagName: "div", + properties: { + className: ["component-content"], + }, + children: [ + { + type: "element", + tagName: "div", + properties: { + className: ["image-share-sheet"], + }, + children: [ + { + type: "element", + tagName: "div", + properties: { + className: [`image image-loaded image-asset image-${sign}`], + id: `lht${sign}`, + }, + children: [ + { + type: "element", + tagName: "picture", + properties: { + className: ["picture"], + }, + children: [ + { + type: "element", + tagName: "img", + properties: { + src: img.properties.src, + alt: alt, + className: ["picture-image"], + }, + }, + ], + }, + ], + }, + ], + }, + { + type: "element", + tagName: "div", + properties: { + className: ["image-description"], + }, + children: [ + { + type: "element", + tagName: "div", + properties: { + className: ["image-caption"], + }, + children: [ + { + type: "text", + value: alt, + }, + ], + }, + ], + }, + ], + }, + ] + } + }) +} + +const code: RehypePlugin = () => (tree) => { + tree.children.forEach((node) => { + if (node.type === "raw") { + node.value = `
${node.value}
` + // node.value = node.value.replace(/astro-code/g, 'astro-code') + } + }) +} + +const body: RehypePlugin = () => (tree) => { + for (let i = 0; i < tree.children.length; i++) { + const node = tree.children[i] + if (node.type === "element" && ["p", "h1", "h2", "h3", "h4", "h5", "h6", "table"].includes(node.tagName)) { + let next = tree.children[i + 1] + const nodes = [node] + while (next && !["figure"].includes(next.tagName) && next.type != "raw") { + nodes.push(next) + next = tree.children[tree.children.indexOf(next) + 1] + } + if (nodes.length > 1) { + // rename label + nodes.forEach((node) => { + if (node.tagName === "p") { + node.properties.className = ["page-body-copy"] + node.tagName = "div" + } + if (node.tagName === "pre") { + const originalClassName = node.properties.className + node.properties.className = originalClassName instanceof Array + ? [...originalClassName, "page-body-copy"] + : ["page-body-copy"] + } + if (["h1", "h2", "h3", "h4", "h5", "h6"].includes(node.tagName)) { + node.properties.className = ["page-body-header"] + } + }) + tree.children.splice(i, nodes.length, { + type: "element", + tagName: "div", + properties: { + className: ["page-body text component"], + }, + children: [ + { + type: "element", + tagName: "div", + properties: { + className: ["component-content"], + }, + children: nodes, + }, + ], + }) + } + } + } +} + +export const themePipeline: RehypePlugins = [ + addSeparator, + image, + code, + body, +] diff --git a/src/styles/global.css b/src/styles/global.css index 6f9585b..d1170cf 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -12,6 +12,7 @@ --footer-pipe-color: #86868b; --footer-directory-title-color: #1d1d1f; --footer-directory-title-color-hover: #000; + --borer-radius: 10px; } *, @@ -30,6 +31,28 @@ body { padding: 0; } +body, input, textarea, select, button { + font-synthesis: none; + -moz-font-feature-settings: "kern"; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing:grayscale +} + +body.theme-dark .astro-code, +body.theme-dark .astro-code span { + color: var(--shiki-dark) !important; + background-color: var(--shiki-dark-bg) !important; + /* Optional, if you also want font styles */ + font-style: var(--shiki-dark-font-style) !important; + font-weight: var(--shiki-dark-font-weight) !important; + text-decoration: var(--shiki-dark-text-decoration) !important; +} +.astro-code{ + padding: 12px; + border-radius: var(--borer-radius); + background-color: var(--gray-primary) !important; +} + ul, ol, li, @@ -124,7 +147,7 @@ button:disabled { } html { - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; font-size: 106.25%; quotes: "“" "”"; @@ -135,7 +158,7 @@ body { line-height: 1.47059; font-weight: 400; letter-spacing: -0.022em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; background-color: #fff; color: #1d1d1f; @@ -488,7 +511,7 @@ html.no-touch.no-reduced-motion .tile[data-focus-method="key"] .media--video { line-height: 1.33337; font-weight: 700; letter-spacing: -0.01em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } @@ -527,7 +550,7 @@ html.no-touch.no-reduced-motion .tile[data-focus-method="key"] .media--video { } .tile__category:lang(zh-CN) { - font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", + font-family: system-ui, "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } @@ -551,7 +574,7 @@ html.no-touch.no-reduced-motion .tile[data-focus-method="key"] .media--video { line-height: 1.28577; font-weight: 600; letter-spacing: -0.016em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; display: flex; justify-content: flex-start; @@ -592,7 +615,7 @@ html.no-touch.no-reduced-motion .tile[data-focus-method="key"] .media--video { } .tile__timestamp:lang(zh-CN) { - font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI' , "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } @@ -5408,7 +5431,7 @@ html.no-touch.no-reduced-motion line-height: 1.23536; font-weight: 500; letter-spacing: -0.022em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; text-align: center; } @@ -5436,7 +5459,7 @@ html.no-touch.no-reduced-motion line-height: 1.23536; font-weight: 600; letter-spacing: -0.022em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; border: 2px solid; padding: 10px 24px 9px; @@ -5470,7 +5493,7 @@ html.no-touch.no-reduced-motion line-height: 1.23536; font-weight: 700; letter-spacing: -0.022em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; -webkit-line-clamp: 6; -webkit-box-orient: vertical; @@ -5939,49 +5962,8 @@ html.no-touch.no-reduced-motion "Arial", sans-serif; } -.page-body:lang(ar) { - line-height: 1.57895; - font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons", - "Helvetica Neue", "Helvetica", "Arial", sans-serif; -} - -.page-body:lang(ja) { - line-height: 1.47376; - font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons", - "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", - "MS Pゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif; -} - -.page-body:lang(ko) { - line-height: 1.52632; - font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic", - "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue", - "Helvetica", "Arial", sans-serif; -} - -.page-body:lang(th) { - line-height: 1.36844; - font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue", - "Helvetica", "Arial", sans-serif; -} - .page-body:lang(zh-CN) { - font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", - "Helvetica Neue", "Helvetica", "Arial", sans-serif; -} - -.page-body:lang(zh-HK) { - font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK", - "Helvetica Neue", "Helvetica", "Arial", sans-serif; -} - -.page-body:lang(zh-MO) { - font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons", - "PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif; -} - -.page-body:lang(zh-TW) { - font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC", + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI' , "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } @@ -5991,62 +5973,13 @@ html.no-touch.no-reduced-motion line-height: 1.47059; font-weight: 400; letter-spacing: -0.022em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } - .page-body:lang(ar) { - line-height: 1.58824; - letter-spacing: 0em; - font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons", - "Helvetica Neue", "Helvetica", "Arial", sans-serif; - } - - .page-body:lang(ja) { - letter-spacing: 0em; - font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons", - "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", - "MS Pゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif; - } - - .page-body:lang(ko) { - line-height: 1.58824; - letter-spacing: 0em; - font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic", - "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue", - "Helvetica", "Arial", sans-serif; - } - .page-body:lang(zh) { letter-spacing: 0em; } - - .page-body:lang(th) { - line-height: 1.35296; - letter-spacing: 0em; - font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue", - "Helvetica", "Arial", sans-serif; - } - - .page-body:lang(zh-CN) { - font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", - "Helvetica Neue", "Helvetica", "Arial", sans-serif; - } - - .page-body:lang(zh-HK) { - font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK", - "Helvetica Neue", "Helvetica", "Arial", sans-serif; - } - - .page-body:lang(zh-MO) { - font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons", - "PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif; - } - - .page-body:lang(zh-TW) { - font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC", - "Helvetica Neue", "Helvetica", "Arial", sans-serif; - } } .page-body-media { @@ -6266,7 +6199,7 @@ html.no-touch.no-reduced-motion line-height: 1.33337; font-weight: 600; letter-spacing: -0.01em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } @@ -6832,21 +6765,12 @@ html.no-touch.no-reduced-motion } .picture { - /* position: absolute; */ - - /* left: 50%; */ - /* top: 0; - height: 100%; - width: 100%; */ - /* transform: translateX(-50%); */ - /* max-width: min(calc(100% - 32px), 650px); */ position: relative; display: flex; align-items: flex-start; justify-content: space-between; margin-left: auto; margin-right: auto; - max-width: min(calc(100% - 32px), 650px); } .picture.no-dl { @@ -7383,7 +7307,7 @@ html.no-touch.no-reduced-motion line-height: 1.33337; font-weight: 700; letter-spacing: -0.01em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } @@ -7548,7 +7472,7 @@ html.no-touch.no-reduced-motion line-height: 1.28577; font-weight: 600; letter-spacing: -0.016em; - font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", + font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } diff --git a/src/utils/image.ts b/src/utils/image.ts index 86c7ba1..11b8e4d 100644 --- a/src/utils/image.ts +++ b/src/utils/image.ts @@ -7,10 +7,9 @@ export const convertImageToBase64URL = async (filename: Filename, imageType: Ima try { const buffer = await readFile(filename) const base64String = Buffer.from(buffer).toString("base64") - // console.log(`base64String`, base64String.slice(0, 100)); return `data:image/${imageType};base64,${base64String}` } catch (error) { - throw new Error(`file ${filename} no exist ❌`) + throw new Error(`file ${filename} no exist ❌`, error) } } diff --git a/tailwind.config.mjs b/tailwind.config.mjs index 7a93fee..1b603d3 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -1,10 +1,7 @@ import { nextui } from "@nextui-org/react" /** @type {import('tailwindcss').Config} */ export default { - content: [ - "./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}", - "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}", - ], + content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}", "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"], theme: { extend: { colors: { @@ -12,6 +9,6 @@ export default { }, }, }, - darkMode: "class", + darkMode: ["selector", "body.theme-dark"], plugins: [nextui()], }