forked from organicmaps/website
Fixed missing newlines in news generation script
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
6e4265f28f
commit
6fceadab3f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue