diff --git a/update_news.js b/update_news.js index d399edea..79699efa 100644 --- a/update_news.js +++ b/update_news.js @@ -69,7 +69,7 @@ function toMarkdown(node, date) { let slug = slugify(title); if (!slug) slug = time.replace(':', '-'); - const frontmatter = `---\ntitle: '${title.replaceAll("'", "''")}'\ndate: ${date}\nslug: "${slug}"\n---\n\n`; + const frontmatter = `---\ntitle: "${title.replaceAll("'", "''")}"\ndate: ${date}\nslug: "${slug}"\n---\n\n`; // Photo-only posts do not have text, but should have an index.md file. if (!node) return frontmatter;