fixed ordered lists

This commit is contained in:
Pagwin 2025-11-28 13:43:38 -05:00
parent 874803d89e
commit 5d29e8165e
No known key found for this signature in database
GPG key ID: 81137023740CA260

View file

@ -205,6 +205,7 @@ orderedListItem = do
char '.' <|> char ')'
optional (char ' ' <|> char '\t')
content <- many $ notFollowedBy lineEnding' *> inlineElement
lineEnding'
-- continuations <- many listContinuation
children <- many (try indentedList)
pure $ LI content children