From 469bbb186dfd95e94a1d30bc72f99cdd91892971 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 20:25:32 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Configure=20highlight.js=20to=20sup?= =?UTF-8?q?press=20HTML=20warnings=20with=20updated=20formatting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/src/directives/highlight.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/websites/pokedex.online/src/directives/highlight.js b/code/websites/pokedex.online/src/directives/highlight.js index 984d471..aa7a4cc 100644 --- a/code/websites/pokedex.online/src/directives/highlight.js +++ b/code/websites/pokedex.online/src/directives/highlight.js @@ -11,7 +11,7 @@ import json from 'highlight.js/lib/languages/json'; hljs.registerLanguage('json', json); // Configure highlight.js to suppress HTML warnings (our content is safe/internal) -hljs.configure({ +hljs.configure({ ignoreUnescapedHTML: true });