← Back to Blog

${title}

${content.replace(/\n/g, "
")}
`; const blob = new Blob([html], {type:"text/html"}); const link = document.createElement("a"); link.href = URL.createObjectURL(blob); link.download = fileName; link.click(); } function showDeleteInfo(fileName, title) { if (!isAdmin) { alert("Admin login required to delete posts."); return; } const box = document.getElementById("delete-helper-box"); const details = document.getElementById("delete-details"); box.scrollIntoView({behavior:"smooth"}); details.innerHTML = `

Selected article: ${title}

File to delete: /blog/${fileName}

  1. Go to your repo on GitHub.
  2. Open the blog folder.
  3. Click ${fileName}.
  4. Click the trash can icon (Delete this file).
  5. Commit the change.

After you delete it and GitHub Pages updates, this article will disappear from the list.

`; }
← Back to Home

FileConverter.run Blog

Articles, guides, and tutorials. New posts appear automatically when added to the blog folder.

Latest Articles