Use double quotes for news title

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-03-05 09:15:02 +01:00
parent a68daf20cd
commit 1634f8bb01

View file

@ -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;