feat: Read highlighter languages from metadata

This commit is contained in:
Leni Aniva 2024-11-05 11:50:00 -08:00
parent 0d87cea96f
commit 7b900c2993
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
3 changed files with 21 additions and 7 deletions

View File

@ -12,5 +12,12 @@
},
"extra": [
{ "route": "/archives", "name": "Archives" }
]
],
"markdown": {
"highlighterLangs": [
"python",
"lean",
"tex"
]
}
}

View File

@ -26,3 +26,7 @@ $$
$$
\vec z^{(l+1)} = \mat M\vec z^{(l)} + \vec b
$$
```tex
\\newcommand{\\cirno}{9}
```

View File

@ -1,5 +1,6 @@
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import adapter from '@sveltejs/adapter-static';
import fs from 'fs';
import { mdsvex, escapeSvelte } from 'mdsvex';
import remarkAlert from './src/lib/markdown.js'
@ -12,7 +13,9 @@ import remarkMath from 'remark-math'
const contentDir = process.env?.CHRYSOBLOG_CONTENT ?? "src/content";
const langs = [
const metadata = await fs.promises.readFile(contentDir + "/metadata.json")
.then((file) => JSON.parse(file.toString()));
const langs = metadata?.markdown.highlighterLangs ?? [
"javascript",
"lean",
"lisp",
@ -26,11 +29,7 @@ const langs = [
"c++",
"sh",
];
const highlightingThemes = {
light: 'vitesse-light',
dark: 'vitesse-dark',
};
const katexOptions = {
const katexOptions = metadata?.markdown.katex ?? {
macros: {
"\\Nat": "\\mathbb N",
"\\Complex": "\\mathbb C",
@ -39,6 +38,10 @@ const katexOptions = {
"\\rv": "\\mathrm",
},
};
const highlightingThemes = {
light: 'vitesse-light',
dark: 'vitesse-dark',
};
const themes = Object.keys(highlightingThemes).map(function(k){ return highlightingThemes[k] });
const highlighter = await getHighlighter({