Compare commits

...

1 Commits

Author SHA1 Message Date
codegen-sh[bot] 0b056a7bc6 Add PromQL as a code highlighting option in the editor 2025-05-07 22:49:33 +00:00
+5
View File
@@ -308,6 +308,11 @@ export const codeLanguages: Record<string, CodeLanguage> = {
label: "Zig",
loader: () => import("refractor/lang/zig").then((m) => m.default),
},
promql: {
lang: "promql",
label: "PromQL",
loader: () => import("refractor/lang/sql").then((m) => m.default),
},
};
/**