HELLO EVERYONE, when i use the LineBreakMode="TailTruncation" the label works fine and cut the end adding ellipsize(...) like in the image

<StackLayout VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand">
<Label TextType="Text" LineBreakMode="TailTruncation" MaxLines="2" FontSize="38">
Lorem Ipsum is simply dummy text of the printing and typesetting industry.</Label>
</StackLayout>
but when i change the texttype to html the behavior of line break mode change like the image 2

my question is: how to prevent this behavior while using html texttype
<StackLayout VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand">
<Label TextType="Html" LineBreakMode="TailTruncation" MaxLines="2" FontSize="38">
Lorem Ipsum is simply dummy text of the printing and typesetting industry.</Label>
</StackLayout>
i search in the internet and dosen't find anything, the only solution i have is not to use html which is required for the app im developing
thanks