Update readme

This commit is contained in:
Michael Morrison 2014-09-13 09:34:18 -05:00
parent 64bd02a104
commit 4b911c61cf
4 changed files with 29 additions and 9 deletions

View file

@ -76,14 +76,16 @@ module.exports = {
return query;
},
printReadme: function() {
var out = '';
for(var key in games) {
var game = games[key];
var out = "* "+game.pretty+" ("+key+")";
out += "* "+game.pretty+" ("+key+")";
if(game.options.port_query_offset || game.options.port_query)
out += " [[Separate Query Port](#separate-query-port)]";
if(game.params.doc_notes)
out += " [[Additional Notes](#"+game.params.doc_notes+")]"
console.log(out);
out += "\n";
}
return out;
}
};