micromark extension that adds support for GFM task list items, matching how GitHub handles task list syntax. Useful if you are using micromark and want markdown like `[x]` or `[ ]` checklist items rendered as HTML. It exports `gfmTaskListItem()` for parsing and `gfmTaskListItemHtml()` for HTML serialization.
Project status
- The project appears still maintained, with the last upstream push on 2024-09-02, after the most recent tagged update (2.1.0 on 2024-07-05).
- Update cadence looks relatively infrequent based on tags, with updates clustered in June 2023 (2.0.0, then 2.0.1 the next day) and the next known update about a year later (2.1.0).
AI summary generated Today
Recent updates
2.1.0
7/5/2024Release 2.1.0 makes the task list tokenizer construct explicitly named (taskListCheck) and refactors type documentation/imports to use @import syntax. The code diff also includes CI and dev-tooling version bumps plus an added test covering disable behavior.
Features2.0.1
6/26/2023Release 2.0.1 primarily updates micromark-related dependencies. The documented release note only mentions a micromark update, but the actual diff shows broader dependency major version bumps plus a code import path change.
2.0.0
6/25/2023Version 2.0.0 is a major update that changes how the extension is consumed, switching exported extension definitions to factory functions that must be called. It also raises the required Node.js version. Code changes indicate the public API shape for both the markdown and HTML extensions is different than what users may expect from the (partially) documented migration notes.
Breaking