Add Atlas (2018)

Begin filling out dates for games in the list
This commit is contained in:
mmorrison 2019-02-06 06:23:34 -06:00
parent 2ffeda6098
commit a37994e1bf
3 changed files with 298 additions and 290 deletions

View file

@ -22,13 +22,16 @@ class GameResolver {
printReadme() {
let out = '';
out += '| Type ID | Name | Notes\n';
out += '|---|---|---\n';
for(const [key,game] of this.games.entries()) {
if (!game.pretty) {
continue;
}
out += "* "+game.pretty+" ("+key+")";
out += "| " + ("`"+key+"`").padEnd(10, " ") + " "
+ "| " + game.pretty;
if(game.extra.doc_notes)
out += " [[Additional Notes](#"+game.extra.doc_notes+")]";
out += " | [Notes](#"+game.extra.doc_notes+")";
out += "\n";
}
return out;