From cc31a86933c24a411336b06947f16c8fb0521edb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Feb 2026 15:17:48 +0000 Subject: [PATCH 1/2] Initial plan From 7e68e54e156f3b7146baa7cea26db6186029ed59 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Feb 2026 15:20:02 +0000 Subject: [PATCH 2/2] fix: add rehypeShiki plugin to kolay config for code syntax highlighting Co-authored-by: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> --- docs-app/vite.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs-app/vite.config.js b/docs-app/vite.config.js index 90bb638..6b64dd7 100644 --- a/docs-app/vite.config.js +++ b/docs-app/vite.config.js @@ -1,6 +1,7 @@ import { ember, extensions } from '@embroider/vite'; import { babel } from '@rollup/plugin-babel'; +import rehypeShiki from '@shikijs/rehype'; import { kolay } from 'kolay/vite'; import { defineConfig } from 'vite'; @@ -9,6 +10,18 @@ export default defineConfig(() => ({ ember(), kolay({ packages: ['@universal-ember/table'], + rehypePlugins: [ + [ + rehypeShiki, + { + themes: { + light: 'github-light', + dark: 'github-dark', + }, + defaultColor: 'light-dark()', + }, + ], + ], }), babel({ babelHelpers: 'runtime',