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
This actually fixes the immediate problem. The method on the inlinePattern returns the correct subtree. However, for some reason, the parent element of that subtree is later stripped of all content (perhaps by the inlineplaceholder stuff). So, for example, given this input: ***foo** bar* The inlinepattern returns: <em><strong>foo</strong> bar</em> However, later it is reduced to: <em></em> Interestingly, this still works: ***foo*** Correctly becomes: <strong><em>foo</em></strong> I'm guessing that the tail on the `em` tag in the first instance is tripping things up some how.
0 commit comments