Created
August 9, 2012 13:12
-
-
Save medikoo/3304090 to your computer and use it in GitHub Desktop.
dom.js v0.3
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
var domjs = require('domjs'); | |
var tpl = domjs.require('./template'); // DocumentFragment [<header>, <nav>, <article>, <footer>] |
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
header( | |
h1('Heading'), | |
h2('Subheading')); | |
nav( | |
ul({ 'class': 'breadcrumbs' }, | |
li(a({ href: '/' }, 'Home')), | |
li(a({ href: '/section/'}, 'Section')), | |
li(a('Subject')))); | |
article( | |
p('Lorem ipsum...')); | |
footer('Footer stuff'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment