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
select the bolded text and notice that "B" is not active (blue). It should be active.
This is because when text is input the post parser reparses that section and we end up re-creating the marker w/ the bold markup in the post parser's markupFromNode method. This skips the builder's marker cache because of two bugs there:
attributes is present but empty ([]) — this line should check whether it is empty, not just absent
newly-created markers without attributes are (mistakenly) not getting cached
The text was updated successfully, but these errors were encountered:
As of 6d4983d:
This is because when text is input the post parser reparses that section and we end up re-creating the marker w/ the bold markup in the post parser's
markupFromNode
method. This skips the builder's marker cache because of two bugs there:attributes
is present but empty ([]
) — this line should check whether it is empty, not just absentThe text was updated successfully, but these errors were encountered: