Task list

Mr.Hope ... 2021-4-25 Markdown
  • Markdown
  • Task list
Less than 1 minute

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

# Configuration




 




module.exports = {
  themeConfig: {
    mdEnhance: {
      tasklist: true,
    },
  },
};
1
2
3
4
5
6
7

# 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
1
2
Last update: April 25, 2021 07:17
Contributors: Mr.Hope