-
Notifications
You must be signed in to change notification settings - Fork 1
Export as .txt File 📄 #5
Copy link
Copy link
Open
Labels
GSSoC '26backendTo help contributors filter issues related to the Node/Express/Prisma logic.To help contributors filter issues related to the Node/Express/Prisma logic.frontendTo help contributors filter issues related only to the React/UI part of the project.To help contributors filter issues related only to the React/UI part of the project.good first issueGood for newcomersGood for newcomers
Metadata
Metadata
Assignees
Labels
GSSoC '26backendTo help contributors filter issues related to the Node/Express/Prisma logic.To help contributors filter issues related to the Node/Express/Prisma logic.frontendTo help contributors filter issues related only to the React/UI part of the project.To help contributors filter issues related only to the React/UI part of the project.good first issueGood for newcomersGood for newcomers
🚀 Is your feature request related to a problem? Please describe.
Currently, the platform only supports exporting humanized content as PDF and Word (.docx). While these are common formats, many users (especially developers or minimalists) prefer a simple .txt file that is lightweight and easy to open in any generic text editor without specialized software.
💡 Describe the solution you'd like
I would like to add a third export option to the "Export" component in the dashboard. This includes:
.txtformat request and correctly set theContent-Type: text/plainheader.🎨 Describe alternatives you've considered
An alternative is for users to manually copy and paste the text into a
.txtfile, but a built-in export feature provides a much more professional and convenient developer experience.📝 Additional context
This should be implemented using the existing export logic, simply adding a new condition to handle the
text/plainMIME type in the response.