aboutsummaryrefslogtreecommitdiff
path: root/test/command/tasklist.md
AgeCommit message (Collapse)Author
2025-02-12Markdown writer: omit extra space after bullets.John MacFarlane
We used to insert extra spaces to ensure that the content respected the four-space rule. That is not really necessary now, since pandoc's markdown and most markdowns don't follow the four-space rule. Those who want the old behavior can obtain it by using `-t markdown+four_space_rule`. Closes #7172.
2023-09-16HTML reader: parse task lists using input elements (#9066)Seth Speaks
Allow the HTML reader to parse task lists of the sort produced by pandoc. Closes #9047
2023-03-29HTML writer: use first paragraph in task item as checkbox label.Albert Krewinkel
Closes: #8729
2023-01-20HTML writer: don't omit newlines in task lists.John MacFarlane
2023-01-20HTML writer: don't disable checkboxes in task lists.John MacFarlane
Closes #8562.
2022-06-23Remove extra soft break for tasklist (#8142)black-desk
Browser will display the extra newline character between checkbox and text as a space, which make tasklist items cannot be aligned. I just remove it.
2019-12-05HTML writer: add task-list class to ul if all elements are task list items.John MacFarlane
This will allow styling unordered task lists in a way that omits the bullet.
2019-01-02Implement task lists (#5139)Mauro Bieg
Closes #3051