After the third upload I was getting really frustrated manually reformatting the tags I was copy-pasting from my NovelAI prompts, so I threw together a script I paste-in after pasting tags into the last textarea field that makes it a little more E6AI friendly. Not perfect, but it's something.
function convertNovelAITags(txt) { let processedTags = txt.replaceAll("{", ""); processedTags = processedTags.replaceAll("}", ""); processedTags = processedTags.replaceAll("[", ""); processedTags = processedTags.replaceAll("]", ""); processedTags = processedTags.replaceAll(" ", " "); processedTags = processedTags.replaceAll(" ", " "); processedTags = processedTags.replaceAll("]", ""); processedTags = processedTags.replaceAll(" ", "_"); processedTags = processedTags.replaceAll(",_", " "); processedTags = processedTags.replaceAll("_,", " "); processedTags = processedTags.trim("_").trim(); return processedTags; } let otherTags = document.querySelector("#post_tags"); let currentTagText = otherTags.value; otherTags.value = convertNovelAITags(currentTagText);