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 nom = require('nom'); | |
var categories = [ ]; | |
nom('http://github.com/joyent/node/wiki/modules', function(err, $) { | |
$('#wiki-body h1:eq(1)~h2~h3').each(function() { | |
categories.push({ | |
name: $(this).text(), | |
count: $(this).next().find('a').length | |
}) | |
}); |
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
presentation({ | |
title: 'My Great Presentation', | |
slides: [{ | |
title: 'Learn About Borders', | |
bullets: [ | |
'Thing 1', | |
'Thing 2', | |
], | |
code: ['path/to/file.css', [2,4]] // path to file, lines to grab |