Remix.run Logo
embedding-shape 6 hours ago

> Probably most people wouldn't enjoy using JSON to encode HTML pages.

Probably yeah, but also, people don't know how enjoyable it is to just use lists and elements within it to represent HTML. Hiccup is a great example of this where you can do something like:

  [:h1 "Hey"
    [:strong
      {:style {:color "red"}}
      "there"]]
And it just makes sense. I'm sure we've yet to find the best way of writing HTML.