兼容数学公式

This commit is contained in:
2025-09-07 21:33:34 +08:00
parent f587f5ac34
commit c2523f5d54
7 changed files with 2942 additions and 117 deletions

View File

@@ -20,6 +20,9 @@ export default defineConfig({
title: 'SIMON BLOG',
description: 'Simon的博客基于 vitepress 实现',
lastUpdated: true,
markdown: {
math: true
},
// 详见https://vitepress.dev/zh/reference/site-config#head
head: [
// 配置网站的图标(显示在浏览器的 tab 上)
@@ -37,6 +40,8 @@ export default defineConfig({
sidebarMenuLabel: '相关文章',
lastUpdatedText: '上次更新于',
// 设置logo
logo: '/logo.jpg',
// editLink: {
@@ -59,3 +64,4 @@ export default defineConfig({
]
}
})