From fb747bef06892185ec4fee4bcd4d3623417418d7 Mon Sep 17 00:00:00 2001 From: tycrek Date: Mon, 1 Jun 2020 15:57:08 -0600 Subject: [PATCH] Remove timestamp from updated to avoid timezone confusion --- _build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build.js b/_build.js index 63fe3b2..c74e5b5 100644 --- a/_build.js +++ b/_build.js @@ -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(),