export function generatePostHtml(postObject, userObject) { const postText = postObject.text !== null ? `
${postObject.text}
` : ""; const postImg = postObject.img !== null ? `` : ""; var options = { year: "numeric", month: "long", day: "numeric", hour: "numeric", minute: "numeric" }; const postCreatedDateTime = new Date(postObject.createdDateTime); const html = `
${postText} ${postImg}
0
0
`; return html; }