const fs = require('fs'); const serverPath = require("./serverPath.js") const filePath = serverPath+'/blog/index.html'; const blogs = require(serverPath+"/blog/blogs.js") function escapeQuotes(value) { return value.replace(/["'&<>]/g, function (char) { switch (char) { case '"': return """; case "'": return "'"; case "&": return "&"; case "<": return "<"; case ">": return ">"; default: return char; } }); } console.log(blogs) let linksText = "ALL POSTS" let dateObject let month let year let oldMonth = "blibidy blob" let oldYear = "bloopy aw" for (let page = blogs.length - 1; page >= 0; page--) { dateObject = new Date(blogs[page][2]) month = dateObject.toLocaleString('en-US', {month: 'long'}); year = dateObject.getFullYear() const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name const dayOfMonth = dateObject.getDate(); console.log(month, year, dayOfMonth, dayOfWeek) if (month != oldMonth) { linksText += (`