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"); abstract = abstract.replace(/<br>/g, "\n");
} }
const md = `--- const md = `---
name: "${title}", name: "${title}"
short: "${short}", short: "${short}"
date: new Date("${date.toString()}"), date: new Date("${date.toString()}")
online: ${online}, online: ${online}
location: "${location}", location: "${location}"
--- ---
${abstract}`; ${abstract}`;

View File

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