I have integrated the ngx-quill editor into my Angular project as the rich text editor. I plan to save the generated HTML in a database and display it on various browsers using innerHTML. Since the styling is done through a class attribute that references built-in classes of the editor, I am facing an issue when trying to render this HTML on platforms where these built-in classes are not available.
Is there a solution to render the HTML without relying on these built-in classes?
Alternatively, is there a method to convert these classes into inline styles for seamless rendering?
If you have any other suggestions on how to properly display the styled HTML from the editor, please share your insights.
Any assistance on this matter would be greatly appreciated.