{"id":38703329,"url":"https://github.com/cschuman/inkwell","last_synced_at":"2026-01-17T10:53:17.739Z","repository":{"id":310142629,"uuid":"1036388283","full_name":"cschuman/inkwell","owner":"cschuman","description":"Native macOS markdown viewer built with C++20 and Cocoa. Clean, lightweight, and reliable with real-time   file watching, command palette, drag \u0026 drop with visual effects, and table of contents navigation. A simple   yet powerful markdown viewer that just works.","archived":false,"fork":false,"pushed_at":"2025-08-23T02:00:18.000Z","size":874,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-23T04:19:11.668Z","etag":null,"topics":["cpp","macos","markdown","markdown-viewer","native-app"],"latest_commit_sha":null,"homepage":"","language":"Objective-C++","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/cschuman.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"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}},"created_at":"2025-08-12T02:22:23.000Z","updated_at":"2025-08-23T01:59:26.000Z","dependencies_parsed_at":"2025-08-16T03:50:10.829Z","dependency_job_id":null,"html_url":"https://github.com/cschuman/inkwell","commit_stats":null,"previous_names":["cschuman/inkwell"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/cschuman/inkwell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschuman%2Finkwell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschuman%2Finkwell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschuman%2Finkwell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschuman%2Finkwell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cschuman","download_url":"https://codeload.github.com/cschuman/inkwell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cschuman%2Finkwell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28506593,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T10:25:30.148Z","status":"ssl_error","status_checked_at":"2026-01-17T10:25:29.718Z","response_time":85,"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":["cpp","macos","markdown","markdown-viewer","native-app"],"created_at":"2026-01-17T10:53:16.809Z","updated_at":"2026-01-17T10:53:17.729Z","avatar_url":"https://github.com/cschuman.png","language":"Objective-C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Inkwell\n\nA fast, native markdown viewer for macOS. Clean, focused, and efficient.\n\n![Version](https://img.shields.io/badge/version-1.0.9-blue)\n![Size](https://img.shields.io/badge/size-608KB-green)\n![License](https://img.shields.io/badge/license-MIT-brightgreen)\n\n## Features\n\n- **Native macOS application** with full Cocoa integration\n- **Lightning fast** - Opens 14MB files in ~1 second\n- **File watching** for automatic refresh when files change\n- **Session memory** - Remembers last opened file and window position\n- **Export support** - PDF and HTML export\n- **Command palette** (⌘K) for quick actions\n- **Focus mode** - Highlight current paragraph with arrow navigation\n- **Recent files menu** - Quick access to recent documents\n- **Dark mode** support with system preference detection\n- **Zoom controls** - Adjust text size to preference\n\n## Installation\n\n### Via Homebrew (Recommended)\n\n```bash\nbrew tap cschuman/tap\nbrew install --cask inkwell\n```\n\n### Direct Download\n\nDownload the latest DMG from [Releases](https://github.com/cschuman/inkwell/releases/latest)\n\n### Build from Source\n\nRequirements:\n- macOS 11.0 or later\n- Xcode Command Line Tools\n- CMake 3.20+\n- vcpkg\n\n```bash\n# Install dependencies\nvcpkg install\n\n# Build\ncmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake\ncmake --build build -j$(sysctl -n hw.ncpu)\n\n# Install to /Applications\ncmake --install build --prefix /Applications\n```\n\n## Usage\n\nOpen markdown files:\n```bash\nopen -a Inkwell document.md\n```\n\nOr drag and drop markdown files onto the application icon.\n\n## Keyboard Shortcuts\n\n### File Operations\n- `⌘O` - Open file\n- `⌘S` - Save (if editing)\n- `⌘W` - Close window\n- `⌘Q` - Quit application\n\n### Navigation\n- `⌘K` - Open command palette\n- `⌘.` - Toggle focus mode\n- `↑/↓` - Navigate paragraphs (in focus mode)\n- `⌘F` - Find in document\n- `⌘G` - Find next\n- `⌘⇧G` - Find previous\n\n### View\n- `⌘+` - Zoom in\n- `⌘-` - Zoom out\n- `⌘0` - Reset zoom\n- `⌘T` - Toggle table of contents\n- `⌘B` - Toggle file browser\n\n### Vim-style Navigation\n- `j/k` - Scroll down/up\n- `h/l` - Scroll left/right\n- `gg` - Go to top\n- `G` - Go to bottom\n\n## Architecture\n\nInkwell is built with:\n- **C++20** for core logic\n- **Objective-C++** for macOS integration\n- **NSTextView** for text rendering\n- **md4c** for markdown parsing\n- **FSEvents** for file monitoring\n\n## License\n\nMIT License - See LICENSE file for details\n\n## Contributing\n\nContributions are welcome! Please feel free to submit pull requests.\n\n## Philosophy\n\n\u003e \"The best code is the code you don't write.\"\n\nInkwell v1.0.9 represents a major cleanup based on expert review. We removed over 2,000 lines of unnecessary effects code to focus on what matters: **fast, reliable markdown viewing**.\n\n## Project Status\n\n**Current Version: 1.0.9** (January 2025)\n\nRecent focus:\n- ✅ Removed 2,000+ lines of unnecessary effects code\n- ✅ Fixed fundamental features\n- ✅ Improved performance and reliability\n- ✅ Reduced binary size\n\nSee [ROADMAP.md](docs/ROADMAP.md) for future plans.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcschuman%2Finkwell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcschuman%2Finkwell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcschuman%2Finkwell/lists"}