1
0
mirror of https://github.com/tycrek/degoogle.git synced 2025-01-18 05:19:00 +01:00

Remove timestamp from updated to avoid timezone confusion

This commit is contained in:
tycrek 2020-06-01 15:57:08 -06:00
parent 4fa5c57a39
commit fb747bef06

View File

@ -9,7 +9,7 @@ const YAML = require('yaml');
// A hacky sort of "class" to contain methods for each section
const BUILD_SECTION = {
// TODO: Make more of these YAML-based functions
header: () => readFile('md/_header.md').replace('{{DATE}}', moment().format('MMMM Do YYYY @h:mm a').replace(/ /g, '%20')),
header: () => readFile('md/_header.md').replace('{{DATE}}', moment().format('MMMM Do YYYY').replace(/ /g, '%20')),
index: () => readFile('md/_index.md'),
contributing: () => readFile('md/_contributing.md'),
browserExtensions: () => generateBrowserExtensions(),