Fixed missing newlines in news generation script

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-02-13 00:32:53 +01:00
parent 6e4265f28f
commit 6fceadab3f

View file

@ -66,7 +66,7 @@ function toMarkdown(node, date) {
let slug = slugify(title);
if (!slug) slug = time.replace(':', '-');
const frontmatter = `---\ntitle: '${title.replaceAll("'", "''")}'\ndate: ${date}\nslug: "${slug}"\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;