任务列表
小于 1 分钟
让你的 VuePress 站点中的 Markdown 文件支持任务列表。
配置
import { defineUserConfig } from "vuepress";
import { hopeTheme } from "vuepress-theme-hope";
export default defineUserConfig({
theme: hopeTheme({
markdown: {
tasklist: true,
},
}),
});
语法
- 使用
- [ ] 一些文字
渲染一个未勾选的任务项 - 使用
- [x] 一些文字
渲染一个勾选了的任务项 (我们也支持大写的X
)
案例
- [ ] 计划 A
- [x] 计划 B
高级
除了设置 markdown.tasklist: true
之外,你还可以将对象作为选项传递:
import { defineUserConfig } from "vuepress";
import { hopeTheme } from "vuepress-theme-hope";
export default defineUserConfig({
theme: hopeTheme({
markdown: {
tasklist: {
/**
* 是否禁用 checkbox
*
* @default true
*/
disabled: false,
/**
* 是否使用 `<label>` 来包裹文字
*
* @default true
*/
label: false,
},
},
}),
});