Add month headers (#48)

* Add month headers

* opacity
This commit is contained in:
Jaco Greeff
2021-01-09 10:36:47 +01:00
committed by GitHub
parent 730c18a84b
commit 40422aee06
3 changed files with 61 additions and 39 deletions
+1 -1
View File
@@ -30,6 +30,6 @@ fs.writeFileSync('urlmeta.json', `${JSON.stringify(
.filter((url) => !urls.includes(url))
.map((url) => ({ date, url }))
)
.sort((a, b) => a.url.localeCompare(b.url)),
.sort((a, b) => b.date.localeCompare(a.date) || a.url.localeCompare(b.url)),
null, 2
)}\n`);