Last active
May 7, 2025 09:56
-
-
Save sogaiu/8f05fa2746d2fe58c14a2472c36d949b to your computer and use it in GitHub Desktop.
case not handled properly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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