Skip to content

Instantly share code, notes, and snippets.

@sogaiu
Last active May 7, 2025 09:56
Show Gist options
  • Save sogaiu/8f05fa2746d2fe58c14a2472c36d949b to your computer and use it in GitHub Desktop.
Save sogaiu/8f05fa2746d2fe58c14a2472c36d949b to your computer and use it in GitHub Desktop.
case not handled properly
(comment
(def case-3-md
``
* A
* B
* B.1
* B.2
* C
``)
# actual result
(doc-parse case-3-md)
# =>
@[@[:ul
@[[["A" 1]]]
@[[["B" 1]]
@[:ul
@[[["B.1" 3]]]
@[[["B.2" 3]]]]]
@[[["C" 1]]]]]
# desired result?
(doc-parse case-3-md)
# =>
@[@[:ul
@[[["A" 1]]]
@[[["B" 1]]
@[:ul-loose
@[[["B.1" 3]]]
@[[["B.2" 3]]]]]
@[[["C" 1]]]]]
# desired result?
(doc-parse case-3-md)
# =>
@[@[:ul-loose
@[[["A" 1]]]
@[[["B" 1]]
@[:ul
@[[["B.1" 3]]]
@[[["B.2" 3]]]]]
@[[["C" 1]]]]]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment