tessl install tessl/pypi-mdutils@1.8.0A comprehensive Python library for programmatically creating and manipulating Markdown files with support for headers, tables, lists, images, links, and text formatting.
Agent Success
Agent success rate when using this tile
80%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.9x
Baseline
Agent success rate without this tile
42%
Build a Python program that generates a markdown file containing hierarchical task lists.
Your program should create a markdown file named tasks.md that contains:
Use the default marker for all list items.
@generates
def generate_task_list():
"""
Generates a markdown file with hierarchical task lists.
Creates a file named 'tasks.md' containing task lists with both
nested and flat unordered list structures.
Returns:
None
"""
passProvides markdown file generation support.
@satisfied-by