Skip to content
Snippets Groups Projects
Unverified Commit 3730de18 authored by Patrick Marsceill's avatar Patrick Marsceill
Browse files

Add support for task lists

parent 4b8e0513
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,22 @@
}
}
.task-list {
padding-left: 0;
}
.task-list-item {
display: flex;
align-items: center;
&::before {
content: "";
}
}
.task-list-item-checkbox {
margin-right: 0.6em;
}
hr + * {
margin-top: 0;
}
......
......@@ -94,6 +94,12 @@ end
- level 2 item
- level 1 item
### And a task list
- [ ] Hello, this is a TODO item
- [ ] Hello, this is another TODO item
- [x] Goodbye, this item is done
### Small image
![](https://assets-cdn.github.com/images/icons/emoji/octocat.png)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment