diff --git a/app/src/protyle/render/highlightRender.ts b/app/src/protyle/render/highlightRender.ts index e8fefff31..8a2014a6a 100644 --- a/app/src/protyle/render/highlightRender.ts +++ b/app/src/protyle/render/highlightRender.ts @@ -30,7 +30,7 @@ export const highlightRender = (element: Element, cdn = Constants.PROTYLE_CDN) = setCodeTheme(cdn); - addScript(`${cdn}/js/highlight.js/highlight.min.js?v=11.7.0`, "protyleHljsScript").then(() => { + addScript(`${cdn}/js/highlight.js/highlight.min.js?v=11.11.1`, "protyleHljsScript").then(() => { addScript(`${cdn}/js/highlight.js/third-languages.js?v=1.0.1`, "protyleHljsThirdScript").then(() => { codeElements.forEach((block: HTMLElement) => { const iconElements = block.parentElement.querySelectorAll(".protyle-icon"); diff --git a/app/src/util/assets.ts b/app/src/util/assets.ts index 417d87c88..11ad73b18 100644 --- a/app/src/util/assets.ts +++ b/app/src/util/assets.ts @@ -322,7 +322,7 @@ export const setCodeTheme = (cdn = Constants.PROTYLE_CDN) => { css = "github-dark"; } } - const href = `${cdn}/js/highlight.js/styles/${css}.min.css?v=11.5.0`; + const href = `${cdn}/js/highlight.js/styles/${css}.min.css?v=11.11.1`; if (!protyleHljsStyle) { addStyle(href, "protyleHljsStyle"); } else if (!protyleHljsStyle.href.includes(href)) {