readableDeepResarch
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
index.ts
https://willthereader--a453b1fe375111f094c49e149126039e.web.val.run
A web application that transforms complex HTML tables (especially from ChatGPT research) into clean, readable formats.
When ChatGPT generates research tables with complex HTML markup, they can be difficult to read due to:
- Excessive styling and CSS classes
- Data attributes cluttering the markup
- Poor mobile responsiveness
- Inconsistent formatting
- Clean HTML Processing: Removes unnecessary attributes and styling while preserving content
- Readable Table Format: Applies consistent, professional styling
- Mobile Responsive: Tables scroll horizontally on smaller screens
- Copy Functionality: Export cleaned HTML for use elsewhere
- Real-time Processing: Instant conversion of pasted HTML
- Copy HTML table content from ChatGPT or other sources
- Paste into the text area
- Click "Make Readable" to process
- View the cleaned, formatted table
- Optionally copy the cleaned HTML
- Backend: Hono framework for API processing
- Frontend: Vanilla JavaScript with Tailwind CSS
- Processing: Removes data attributes, classes, and styling while preserving semantic content
- Responsive Design: Sticky headers and horizontal scrolling for large tables
GET /- Main application interfacePOST /api/process- Process HTML and return cleaned version
├── index.ts # Main Hono application
├── frontend/
│ └── index.html # Frontend interface
└── README.md # This file