We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d35abe8 commit f59050fCopy full SHA for f59050f
astro.config.mjs
@@ -6,6 +6,8 @@ import starlightUtils from "@lorenzo_lewis/starlight-utils";
6
import starlightAutoSidebar from "starlight-auto-sidebar";
7
import starlightHeadingBadges from "starlight-heading-badges";
8
9
+import { pluginCxxMark } from "./src/plugins/expressive-code/cxx-mark";
10
+
11
// https://astro.build/config
12
export default defineConfig({
13
site: process.env.CPPDOC_SITE,
@@ -61,6 +63,9 @@ export default defineConfig({
61
63
}),
62
64
],
65
customCss: ["./src/styles/custom.css"],
66
+ expressiveCode: {
67
+ plugins: [pluginCxxMark()],
68
+ },
69
70
71
});
0 commit comments