{"id":43122771,"url":"https://github.com/qoyyuum/bigrichtextbox","last_synced_at":"2026-01-31T20:03:39.836Z","repository":{"id":330990349,"uuid":"1124755755","full_name":"Qoyyuum/bigrichtextbox","owner":"Qoyyuum","description":"A webpage that is just 1 big rich text editor. That is it.","archived":false,"fork":false,"pushed_at":"2026-01-25T05:02:39.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-25T19:41:14.889Z","etag":null,"topics":["textbox"],"latest_commit_sha":null,"homepage":"https://qoyyuum.github.io/bigrichtextbox/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Qoyyuum.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"qoyyuum","thanks_dev":null,"custom":null}},"created_at":"2025-12-29T15:02:42.000Z","updated_at":"2026-01-25T05:02:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Qoyyuum/bigrichtextbox","commit_stats":null,"previous_names":["qoyyuum/bigrichtextbox"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Qoyyuum/bigrichtextbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qoyyuum%2Fbigrichtextbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qoyyuum%2Fbigrichtextbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qoyyuum%2Fbigrichtextbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qoyyuum%2Fbigrichtextbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Qoyyuum","download_url":"https://codeload.github.com/Qoyyuum/bigrichtextbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qoyyuum%2Fbigrichtextbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28952582,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["textbox"],"created_at":"2026-01-31T20:03:16.131Z","updated_at":"2026-01-31T20:03:39.832Z","avatar_url":"https://github.com/Qoyyuum.png","language":"HTML","funding_links":["https://buymeacoffee.com/qoyyuum"],"categories":[],"sub_categories":[],"readme":"# BigRichTextBox\n\nA tiny, distraction-free **online rich text box** — inspired by [bigtextbox.com](https://bigtextbox.com/), but built for rich text.\n\n## Use it online\n\n- Live app:\n  - https://qoyyuum.github.io/bigrichtextbox/index.html\n\nOpen the link and start typing.\n\n## What this is\n\nBigRichTextBox is a single static web page that gives you a large, clean writing surface.\n\nYou can:\n- Write rich text (bold, italic, underline)\n- Use headings (H1–H6)\n- Switch font family\n- Use bulleted / numbered lists\n- Set alignment (left/center/right/justify)\n- Toggle theme (default **dark**, click to switch **light**)\n\n## How it works (simple)\n\nThis project is intentionally minimal:\n- It is **just static files** (`index.html`, `styles.css`, `app.js`).\n- It runs entirely in your browser (no backend server).\n- It is hosted via **GitHub Pages**.\n\n### Rich text editor\n\nRich text editing is handled by **QuillJS**:\n- Quill renders the editor UI and formatting.\n- Quill is loaded from a CDN (no build step needed).\n\n### Saving your text\n\nYour text is automatically saved to your browser using **Local Storage**:\n- The app stores Quill “Delta” content as JSON.\n- Refreshing the page restores what you last wrote.\n\nNothing is uploaded anywhere by this app.\n\n### Theme toggle\n\nThe theme toggle:\n- Defaults to **dark**\n- Persists your preference in Local Storage\n- Uses CSS variables to style both the page and Quill’s toolbar/editor\n\n## Run locally\n\nBecause it’s static, you can run it in multiple ways:\n\n### Option A: open the file\n\n- Open `index.html` directly in a browser.\n\n### Option B: run a small local server (recommended)\n\nPython:\n\n```bash\npy -m http.server 8000\n```\n\nThen open:\n\n- http://localhost:8000/\n\n## Project structure\n\n- `index.html` – page layout + Quill toolbar\n- `styles.css` – styling (including light/dark theme)\n- `app.js` – Quill init, autosave/restore, toolbar visibility, theme toggle\n\n## Credits\n\n- Editor: [QuillJS](https://quilljs.com/)\n- Inspiration: [bigtextbox.com](https://bigtextbox.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqoyyuum%2Fbigrichtextbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqoyyuum%2Fbigrichtextbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqoyyuum%2Fbigrichtextbox/lists"}