[solved] When are marks splitted

How does PM decide marked text to split or not?

em inside strong -> split up

<strong>A B C</strong>
apply em for char B
<strong>A </strong><em><strong>B</strong></em><strong> C</strong>

strong inside em -> not split up

<em>A B C</em>
apply strong for char B
<em>A <strong>B</strong> C</em>

Is there a way I can influence the order (especially ‘em’ / ‘strong’ inside ‘a’)

My answer in this thread might help.

Brilliant, that does the trick. I got confused after reading this thread. In my schema definition ‘link’ is now on the first position which avoids links being split up when link text has “em” or “strong”.

Thanks marijn!