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
E.g. I would expect that */word/* would render as word (bold and emphasized). Instead is renders as /word/.
Issue is that inline markup (as defined in inline.ts tokenizer) does not tokenize delimiters. E.g. */word/* should be tokenized as
[*, \, word. \, *]. Instead it renders as a text.bold token with contents \word\.
The text was updated successfully, but these errors were encountered:
E.g. I would expect that
*/word/*
would render as word (bold and emphasized). Instead is renders as /word/.Issue is that inline markup (as defined in
inline.ts
tokenizer) does not tokenize delimiters. E.g.*/word/*
should be tokenized as[
*
,\
,word
.\
,*
]. Instead it renders as atext.bold
token with contents\word\
.The text was updated successfully, but these errors were encountered: