Extract text items from markdown-style bullet lists, handling nested indentation and various bullet symbols.
Constraints
Example
>>> parse_bullets("- apple\n* banana\n+ cherry")
['apple', 'banana', 'cherry']
>>> parse_bullets("# Heading\n- first item\n\nSome text\n- second item")
['first item', 'second item']
>>> parse_bullets("- item with spaces ")
['item with spaces']
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints