diff --git a/app/c.js b/app/c.js index 2f0a49c..15e718d 100644 --- a/app/c.js +++ b/app/c.js @@ -10,14 +10,14 @@ function captureFrontMatterAndMarkdown() { } } else if (k.endsWith('[]')) { formData.set(k, formData.getAll(k)) - var s = JSON.stringify(formData.getAll(k)[0].split(",")) + var s = JSON.stringify(formData.getAll(k)[0].split(" ☒").join("").split(",")) frontmatter += `${k.slice(0, -2)}: ${s}\n` } else if (k == "relpath") { filepath = `${location.pathname.split('/public')[0]}/content/${formData.get(k)}` gitpath = `${location.pathname.split('/public')[0]}` } else if (k == "relpermalink") { publishpath = `${location.pathname.split('/public')[0]}/public${formData.get(k)}index.html` - } else if (["protocol", "offline"].includes(k)) { + } else if (["protocol", "offline", "ignore"].includes(k)) { continue } else { var s = JSON.stringify(formData.get(k))