format dates without milliseconds
Alan Pearce alan@alanpearce.eu
Mon, 15 Apr 2024 23:13:36 +0200
1 files changed, 9 insertions(+), 5 deletions(-)
jump to
M src/templates.ts → src/templates.ts
@@ -80,7 +80,7 @@ $post.find(".p-name").text(post.title); $post.find(".u-url").attr("href", post.url); $post .find(".dt-published") - .attr("datetime", post.date.toISOString()) + .attr("datetime", post.date.toISOString().replace(/\.\d{3}/, "")) .text(post.date.toISOString().slice(0, 10)); $post.appendTo($feed); } @@ -105,7 +105,7 @@ ); $(".title").addClass("h-card p-author").attr("rel", "author"); $(".h-entry .dt-published") - .attr("datetime", file.date.toISOString()) + .attr("datetime", file.date.toISOString().replace(/\.\d{3}/, "")) .text(file.date.toISOString().slice(0, 10)); $(".h-entry .e-content").html(content); const categories = $(".h-entry .p-categories"); @@ -145,7 +145,7 @@ $post.find(".p-name").text(post.title); $post.find(".u-url").attr("href", post.url); $post .find(".dt-published") - .attr("datetime", post.date.toISOString()) + .attr("datetime", post.date.toISOString().replace(/\.\d{3}/, "")) .text(post.date.toISOString().slice(0, 10)); $post.appendTo($feed); } @@ -179,7 +179,9 @@ const $feed = $("feed"); $feed.children("title").text(title); $feed.children("link").attr("href", config.base_url); $feed.children("id").text(makeTagURI(tag || "feed")); - $feed.children("updated").text(posts[0].date.toISOString()); + $feed + .children("updated") + .text(posts[0].date.toISOString().replace(/\.\d{3}/, "")); const $tpl = $("feed > entry").remove(); for (const post of posts) { @@ -189,7 +191,9 @@ $post .children("link") .attr("href", new URL(post.url, config.base_url).href); $post.children("id").text(makeTagURI(post.basename)); - $post.children("updated").text(post.date.toISOString()); + $post + .children("updated") + .text(post.date.toISOString().replace(/\.\d{3}/, "")); $post.find("author > name").text(config.title); $post.children("summary").text(post.description || ""); const content = marked.parse((await getPost(post.input)).content);