Is your feature request related to a problem? Please describe.
When rendering a list, there is no indentation after line breaks in each list item.

In packages like flutter_markdown, this indentation is properly applied.

Describe the solution you'd like
It would be great if flutter_md could support similar indentation for better readability.
Additional context
MarkdownWidget is built like this.
final md =
'''
- Parsing: ~300 us for typical AI responses, 15x times faster than markdown package
- Rendering: 120 FPS smooth scrolling for chat-like interfaces
- Memory: Minimal memory footprint with efficient span filtering
''';
return MarkdownWidget(markdown: Markdown.fromString(md));
Thank you for creating such a great package. I really appreciate it !
Is your feature request related to a problem? Please describe.
When rendering a list, there is no indentation after line breaks in each list item.

In packages like flutter_markdown, this indentation is properly applied.

Describe the solution you'd like
It would be great if flutter_md could support similar indentation for better readability.
Additional context
MarkdownWidget is built like this.
Thank you for creating such a great package. I really appreciate it !