feat(notes): highlight rust code blocks and .rs file views
All checks were successful
CI / verify (push) Successful in 1m7s

This commit is contained in:
Julien Calixte
2026-07-08 00:12:17 +02:00
parent 1b6c7542d7
commit f9906cba30
2 changed files with 2 additions and 0 deletions

View File

@@ -194,6 +194,7 @@ export const useShikiji = (): Promise<void> => {
"html", "html",
"css", "css",
"json", "json",
"rust",
{ {
...alloyGrammar, ...alloyGrammar,
name: "alloy", name: "alloy",

View File

@@ -15,6 +15,7 @@ const EXT_TO_LANG: Record<string, string> = {
scss: "css", scss: "css",
json: "json", json: "json",
jsonc: "json", jsonc: "json",
rs: "rust",
als: "alloy" als: "alloy"
} }