Python Markdown extension for task lists with checkboxes
Project description
[Markdown Checklist](https://github.com/FND/markdown-checklist)
a [Python Markdown](http://pythonhosted.org/Markdown/) extension for lists of tasks with checkboxes
inspired by [GitHub task lists](https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments):
[ ] foo
[x] bar
[ ] baz
becomes
<ul> <li><input type=”checkbox” disabled> foo</li> <li><input type=”checkbox” disabled checked> bar</li> <li><input type=”checkbox” disabled> baz</li> </ul>
a dash can be used instead of an asterisk for list items
both upper- and lowercase “x” are accepted to activate checkboxes
Usage
import markdown html = markdown.markdown(source, extensions=[‘markdown_checklist.extension’])
or
import markdown from markdown_checklist.extension import ChecklistExtension html = markdown.markdown(source, extensions=[ChecklistExtension()])
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file markdown-checklist-0.1.0.tar.gz
.
File metadata
- Download URL: markdown-checklist-0.1.0.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad4b13981095f4b2e1123c3a517129f99fb84c0986ef0fa1b6f275f1ee12dcf0 |
|
MD5 | 36c81ac9e4ad2a51ef7525960872b5a2 |
|
BLAKE2b-256 | 15951b7d40a0b6f39a85f283e6103a82fdfb1dbe467222b9505cda866108cad6 |