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)