forked from organicmaps/website
Use double quotes for news title
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
a68daf20cd
commit
1634f8bb01
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue