logo
努力加载中 ……

Task list

原创shentuzhigang11/3/2021, 7:42:57 AM70a few seconds

Let the Markdown file in your VuePress site support task list.

Configuration

module.exports = {
  plugins: [
    [
      "markdown-enhance",
      {
        // Enable Task List
        tasklist: true,
      },
    ],
  ],
};

Syntax

  • Use - [ ] some text to render a unchecked task item.
  • Use - [x] some text to render a checked task item. (Capital X is also supported)

Demo

- [ ] Plan A
- [x] Plan B