# Task List Rendering Test


This post tests the rendering of task lists in Markdown.

<!--more-->

## Basic Task Lists

- [ ] Unchecked Task
- [x] Checked Task
- Regular list item

## Nested Task Lists (Bug Fix Verification)

- [ ] Parent Task 1
  - [ ] Child Task 1.1
  - [x] Child Task 1.2
  - Regular list item
- [x] Parent Task 2
  - [ ] Child Task 2.1
    - [ ] Grandchild Task 2.1.1
    - [x] Grandchild Task 2.1.2

## Extended Task Lists (Custom Icons)

- [-] Cancelled Task
- [/] In Progress Task
- [<] Scheduled Task
- [>] Rescheduled Task
- [!] Important Task
- [?] Question Task
- Regular list item

## Mixed Content in List Items

- [ ] Task with **bold** and _italic_ text
- [x] Task with `inline code`
- [ ] Task with [some link](https://github.com/hugo-fixit/FixIt)
- [ ] Multi-line task
  that spans across multiple lines
  and still renders correctly as a single list item.


---

> 作者: 本地用户  
> URL: http://localhost:13005/units/task-list-test/  

