Oddbean new post about | logout
 Aha! I got the DOM down to about 900 elements by replacing a bunch of <br> with \n and setting `white-space: pre;`

Now to try and duck below the 800 elements recommended by https://developer.chrome.com/docs/lighthouse/performance/dom-size/

#HTML 
 And, of course, I can put the class directly into the <a> element - no need for a wrapping <div>!

That's knocked https://shkspr.mobi/blog/ down to 795 DOM elements on the front page.

Wonder what else I can do to make it faster & leaner. Thoughts?