Documentation update

This commit is contained in:
Mat Groves 2013-02-20 19:05:51 +00:00
parent 7a977ace5c
commit 18dca7aee1
88 changed files with 21329 additions and 331 deletions

17
docs/assets/js/yui-prettify.js vendored Normal file
View file

@ -0,0 +1,17 @@
YUI().use('node', function(Y) {
var code = Y.all('.prettyprint.linenums');
if (code.size()) {
code.each(function(c) {
var lis = c.all('ol li'),
l = 1;
lis.each(function(n) {
n.prepend('<a name="LINENUM_' + l + '"></a>');
l++;
});
});
var h = location.hash;
location.hash = '';
h = h.replace('LINE_', 'LINENUM_');
location.hash = h;
}
});