From 289e0f8c678bf626709db1d620f85f5b2b51128d Mon Sep 17 00:00:00 2001 From: Aditya Thakral Date: Thu, 2 Sep 2021 12:29:05 -0400 Subject: [PATCH] Fix presentors array --- scripts/mdx-scripts/talk-conversion.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mdx-scripts/talk-conversion.js b/scripts/mdx-scripts/talk-conversion.js index f7a00d1..6d7ba55 100644 --- a/scripts/mdx-scripts/talk-conversion.js +++ b/scripts/mdx-scripts/talk-conversion.js @@ -96,7 +96,7 @@ async function xml2md(talk, index) { index: ${index} title: '${title.replaceAll("'", "''")}' presentors: - - '${presentors.join("\n - ").replaceAll("'", "''")}' + - ${presentors.join("\n - ").replaceAll("'", "''")} thumbnails: small: '${thumbSmall}'${thumbLarge ? `\n large: '${thumbLarge}'` : ""} links: @@ -129,7 +129,7 @@ async function resourceExists(url) { const time = Math.trunc(Math.random() * 10000); await sleep(time); - // const timer = setTimeout(() => console.log("not done", time, url), time + 3000); + const timer = setTimeout(() => console.log("not done", time, url), time + 3000); const response = await fetch(url); clearTimeout(timer)