Skip to content

Instantly share code, notes, and snippets.

@fromheten
Created October 20, 2014 23:01
Show Gist options
  • Save fromheten/2c7e930a6b1170bc8c15 to your computer and use it in GitHub Desktop.
Save fromheten/2c7e930a6b1170bc8c15 to your computer and use it in GitHub Desktop.
Late night thinking about
Late night thoughts
<!-- html -->
<html>
<head>
<title>Website compiled from JSON</title>
</head>
<body>
<h1>This is a title</h1>
<p>This paragraph is interesting</p>
</body>
</html>
<!-- JSON -->
{html:
{head:
{title: "Website compiled from JSON"}
},
{body:
{h1: "This is a title"},
{p: "This paragraph is interesting"}
}
}
;; Lisp
(html
(head
(title "Website compiled from Lisp"))
(body
(h1 "This is a title")
(p "This paragraph is interesting")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment