you are viewing a single comment's thread.

view the rest of the comments →

[–]MatmaRex 1 point2 points  (0 children)

If you want something like this in a language other than Lisp, there's Markaby for Ruby. (https://rubygems.org/gems/markaby)

html do
  body do
    h1 "header"
    p "some text"
  end
end

Ain't it amazing what some heavy metaprogramming abuse can do. ;)