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 found that in the case of double nesting, some content can be parsed correctly, but in sentences like the following, only a list of tokens is parsed.
This is _/underline, italic and *-strikethrough bold-*/_. Mix and match how you see fit, just make sure
The text was updated successfully, but these errors were encountered:
I tried to find out what the issue was, and here are some of my findings, which I hope will be helpful.
The following content can be parsed very well.
let content = r#"_*/hell, -ow-/*_, orld! "#;// can be parsedlet content = r#"_*/hell, ow/*_, orld!"#;// can not be parsedlet content = r#"_*/hell , ow/*_, orld! "#;// can not be parsedlet content = r#"_*/hell ow/*_, orld! "#;// can not be parsed
I found that in the case of double nesting, some content can be parsed correctly, but in sentences like the following, only a list of tokens is parsed.
The text was updated successfully, but these errors were encountered: