In case the markdown contains formatted text and the another formatted text that contains markdown transformed by a text-match transformer (e.g. link markdown) after it, lexical escapes formatting tokens and transforms this content using the text-match transformer instead of text-format transformer.
Lexical version: latest
Steps To Reproduce
Try rendering this markdown
sample **formatter** text and `[link](example.com)`

It seems this have been broken by this pr #7004
I fixed it by adding foundTextMatch.startIndex > foundTextFormat.endIndex check in importTextTransformers.ts -> importTextTransformers:
PR -> #7769
Link to code example:
The current behavior
The expected behavior
Impact of fix