Created
July 21, 2010 20:07
-
-
Save jed/485037 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// just an idea for now | |
with( fab = require( "fab" ) ) | |
with( fab.html ) | |
module.exports = fab | |
() | |
( /^\// ) | |
( HTML, { class: "mobile" } ) | |
( HEAD ) | |
( SCRIPT, { src: "/this_is_remote.js" } )() | |
( SCRIPT ) | |
( "// This is inline." ) | |
() | |
() | |
( BODY ) | |
( "This is some text." ) | |
( BR, { style: "clear:all" } ) | |
( DIV, "This is inline text." ) | |
( DIV ) | |
( "This is block text." ) | |
() | |
() | |
() | |
( 404 ) | |
(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What a scary idea ;)