Your slides, now in Markdown format.
# install globally
npm i -g @slidev/cli
# install locally
npm init slidev@latest
npx slidev
npx slidev <filepath>
npx slidev export <filepath>
vscode slidev extension
highly recommended
最简单的解决方案就是直接在 Frontmatter 中直接指定字体
Refer to https://sli.dev/custom/config-fonts
---
fonts:
# basically the text
sans: Noto Sans SC
# use with `font-serif` css class from UnoCSS
serif: Noto Serif SC
# for code blocks, inline code, etc.
mono: Fira Code
---