Corrupt File Generator Online

Upload and Edit Text



`; // Wrap in HTML } else if (outputType === 'xml') { fileContent = `${textToSave}`; // Wrap in XML } else if (outputType === 'md') { fileContent = `# Markdown Output\n\n${textToSave}`; // Markdown format } else { fileContent = textToSave; // Default to text format }var textToSaveAsBlob = new Blob([fileContent], { type: "text/plain" }); var textToSaveAsURL = window.URL.createObjectURL(textToSaveAsBlob); var fileNameToSaveAs = `stylish_text.${outputType}`;var downloadLink = document.createElement("a"); downloadLink.download = fileNameToSaveAs; downloadLink.href = textToSaveAsURL; downloadLink.style.display = "none"; document.body.appendChild(downloadLink); downloadLink.click(); document.body.removeChild(downloadLink); }