Remove commas

This commit is contained in:
Jared He 2021-07-13 12:53:34 -04:00
parent 82561cb1a6
commit 8f7cd053aa
2 changed files with 7 additions and 7 deletions

View File

@ -82,11 +82,11 @@ const parseXML = (XML) => {
abstract = abstract.replace(/<br>/g, "\n");
}
const md = `---
name: "${title}",
short: "${short}",
date: new Date("${date.toString()}"),
online: ${online},
location: "${location}",
name: "${title}"
short: "${short}"
date: new Date("${date.toString()}")
online: ${online}
location: "${location}"
---
${abstract}`;

View File

@ -48,8 +48,8 @@ const parseXML = (XML) => {
);
const md = `---
author: ${author},
date: new Date("${date}"),
author: ${author}
date: new Date("${date}")
---
${content}`;