new poast: selection detection

This commit is contained in:
2025-01-05 00:41:05 +00:00
parent 8850366898
commit 8ea52962bf
16 changed files with 3342 additions and 2400 deletions

View File

@@ -1,6 +1,8 @@
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
import tailwind from "@astrojs/tailwind";
@@ -14,5 +16,7 @@ export default defineConfig({
// https://shiki.style/themes
theme: "catppuccin-mocha",
},
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
},
});