mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 06:25:55 +00:00
16 lines
424 B
TypeScript
16 lines
424 B
TypeScript
import type { MarkdownOptions } from 'vitepress'
|
|
import mdkatex from '@andatoshiki/markdown-it-katex'
|
|
import mdTasklist from 'markdown-it-task-lists'
|
|
|
|
export const markdown: MarkdownOptions = {
|
|
theme: {
|
|
light: 'one-dark-pro',
|
|
dark: 'material-theme-palenight',
|
|
},
|
|
lineNumbers: true,
|
|
config: md => {
|
|
// use more markdown-it plugins!
|
|
md.use(mdkatex), md.use(mdTasklist)
|
|
},
|
|
}
|