Fine, I’ll build my own text editor!

Title “Fine, I’ll build my own text editor!”, the name “David Bushell”, and an editor window with 13 numbered lines of syntax-highlighted HTML.

David Bushell tries three ways to build one in the browser and shows what each approach gives away. Canvas offers full control but no text selection, undo history, or multi-line paste. Contenteditable with plaintext-only brings back native editing and accessibility, though performance drops past a certain number of characters. A plain <textarea> turns out fastest, with syntax highlighting layered on top.

dbushell.com/2026/09/01/text-editor