♻️ Refactored the post item

This commit is contained in:
2025-11-05 22:36:24 +08:00
parent b14af9675c
commit 412ebbd083
9 changed files with 797 additions and 511 deletions

10
app/types/markdown-it-texmath.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
declare module 'markdown-it-texmath' {
interface TexMathOptions {
engine?: any
delimiters?: string
katexOptions?: Record<string, any>
}
function texmath(options?: TexMathOptions): any
export default texmath
}