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
1 changed files with 1 additions and 1 deletions

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(),