Skip to content

Instantly share code, notes, and snippets.

@blake8086
Forked from jeremyckahn/html.js
Created January 12, 2012 18:19
Show Gist options
  • Save blake8086/1602187 to your computer and use it in GitHub Desktop.
Save blake8086/1602187 to your computer and use it in GitHub Desktop.
This is a dumb JS concept. I think it's been done.
html()
('head')
('title', 'My awesome page')
('body')
('div')
('span', 'I am span contents!')
@blake8086
Copy link
Author

more like:

html(
  head(
    title('My jawesome page')
  ),
  body(
    div(
      span('I am spanacus!')
    )
  ),
);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment