export function htmlNormalizer(htmlInput) {
let str = htmlInput;
// Some tags have not been normalized across browsers in `Coral RTE` yet.
// So we'll do this manual step here for now.
// Harmonize all to tag.
str = str
.replace(//g, '') // IE
.replace(/<\/strong>/g, ''); // IE
// Harmonize all to tag.
str = str
.replace(//g, '') // IE
.replace(/<\/em>/g, ''); // IE
return str;
}