Markdown import

Markdown Extended Importing

The following mdx code:

import TaskList from '../pl-includes/task-list.mdx'
 
<TaskList />

Where the file '../pl-includes/task-list.mdx' contains:

- [x] Code
- [x] Sleep
- [ ] Eat

Inserts the markdowm file in '../pl-includes/task-list.mdx' into the page and looks like this:

  • Code
  • Sleep
  • Eat