Hi Team,
After converting docx to html we are embeding generated html page on our application.
This generated html is causing issues with existing text on page it is making few of the characters bold and few of them as it is e.g. Test 123
To debug this issue we removed base64 from generated font-faces and it was working.
Can you please have a look into this issue?
E.x.
Generated font-face which is causing issues.
@font-face { font-family: 'Arial'; font-style: italic; font-weight: normal; src: local(''), url('data:application/x-font-woff;[huge base64 of font data]');}
After changing above font-face to below we didn’t saw the issue
@font-face { font-family: 'Arial'; font-style: italic; font-weight: normal; src: local('');}