I must apologize – Although I really feel embareced by the massive inline css – it is inline css – even if its put in the header – But this seems to be the new Gutenberg Paradigma – Bloat as Bloat can be.
Nevertheless – I just used the new box-decoration-break: clone property to cope with the kt-highlight – Ok, its not Edge/IE compatible – But how cares.
This helps:
.kt-highlight {
/* not supported by most lame Browsers – MS-Ecosystem */
-webkit-box-decoration-break: clone;
-o-box-decoration-break: clone;
box-decoration-break: clone;
}
Cheers!