typewriter-editor / typewriter

A rich text editor based off of Quill.js and Ultradom, and using Svelte for UI.
MIT License
382 stars 32 forks source link

Fix HTML rendering of a document #133

Closed jacwright closed 8 months ago

jacwright commented 8 months ago

Old method would not output correct HTML, setting some attributes incorrectly, such as className="my-class" instead of class="my-class". This removes string-based code and leans on existing rendering code and the browser to output the HTML.