Add test for unordered list indentation, enhance parser to handle nested lists with indentation, and bump version to 1.1.0

This commit is contained in:
2026-01-17 16:46:44 +01:00
parent deb96c665e
commit 382ee2f5aa
4 changed files with 42 additions and 5 deletions

View File

@@ -66,7 +66,7 @@ sealed class MarkdownPart {
) : MarkdownPart()
data class UnorderedList(
val lines: List<String>,
val lines: List<Pair<Int, String>>,
) : MarkdownPart()
data class CheckboxList(