mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
Add Atlas (2018)
Begin filling out dates for games in the list
This commit is contained in:
parent
2ffeda6098
commit
a37994e1bf
3 changed files with 298 additions and 290 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue