You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I implemented the UI layer of Markdown and I am facing an issue with the way it is getting parsed.
Here is the sample input:
- 1. hello
- 2. world
- 3. something
Problem for "- 1. hello" in the first line of sample
I am getting OrderedList type of ListItem (after typecasting to any Markup) while visiting it, it should ideally return native string type for "1. hello" part.
What I get in iOS (please pardon the formatting, not perfect yet):
What it should ideally look like:
Implementation context:
I currently have v0.5.0, latest version.
I am simply getting an attributed string from my custom implementation of Node visits, here is the flow: