Skip to content

Commit d9c6954

Browse files
committed
att math function
1 parent 3c94a36 commit d9c6954

4 files changed

Lines changed: 4702 additions & 435 deletions

File tree

.vitepress/config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
import { defineConfig } from 'vitepress';
22
import Nav from './nav.json';
33
import Sidebar from './sidebar';
4+
import mathjax3 from 'markdown-it-mathjax3'
45

56
// https://vitepress.dev/reference/site-config
67
export default defineConfig({
78
title: 'Kicktemp',
89
description: 'Anleitungen und Dokumentationen für Kicktemp.shop Erweiterungen.',
910
srcDir: 'src',
11+
markdown: {
12+
config: (md) => {
13+
md.use(mathjax3)
14+
}
15+
},
1016
outDir: 'dist',
1117
cleanUrls: true,
1218
srcExclude: ['**/_partials/*.md'],

0 commit comments

Comments
 (0)