-
Notifications
You must be signed in to change notification settings - Fork 180
Closed
Labels
Description
✨ Feature Description
Add a Hemingway Editor–style writing analysis tool that helps users improve readability. It will highlight long/complex sentences, adverbs, and passive voice, and provide a readability score along with word/character counts.
🎯 Why is this Needed?
- Helps students, researchers, and writers make their text clearer and more concise.
- Encourages better writing practices by flagging common issues.
- Complements existing tools (like Grammarly and citation managers) by focusing on readability and style rather than just grammar.
📋 Possible Implementation
Frontend (HTML, CSS, JS):
- Create a text editor area where users can paste or type text.
- Use JavaScript regex patterns to detect adverbs, passive voice, and long sentences.
- Apply CSS highlights for different issues (e.g., yellow = long, red = passive, green = adverb).
- Add live analysis (updates as the user types).