A simple macOS app to manage Markdown files — perfect for AI knowledge bases (Claude, ChatGPT, etc.)
If you work with LLMs like Claude or ChatGPT, you probably manage knowledge bases — collections of .md files that give context to your AI assistants.
Existing Markdown editors are either too complex (Obsidian) or don't handle .docx/.rtf conversion well. Markdown Manager is built specifically for this use case:
- ✅ Simple preview & edit
- ✅ Convert Word/RTF docs to clean Markdown
- ✅ Preserve tables with line breaks
- ✅ No bloat, just what you need
| Feature | Description |
|---|---|
| 📁 File Browser | Navigate your .md files easily |
| 👁️ Live Preview | Real-time Markdown rendering |
| ✏️ Simple Editor | Edit with auto-save |
| 📥 Import .docx/.rtf | Convert Word & RTF to Markdown |
| 📊 Table Support | Word tables → Markdown tables (with line breaks!) |
| 🖱️ Drag & Drop | Drop .md, .rtf, or .docx files |
| 🔲 Resizable Panels | Adjust editor/preview width |
| 📖 Reader Mode | Hide editor for comfortable reading |
# Install Node.js via Homebrew
brew install node# Clone the repo
git clone https://github.com/Lolicht/markdown-manager.git
cd markdown-manager
# Install dependencies
npm install
# Build for macOS
npm run build-mac
⚠️ Before publishing: ReplaceYOUR_USERNAMEwith your GitHub username in this README and inpackage.json
The app will be in dist/Markdown Manager.app — drag it to your Applications folder.
Since this isn't signed with an Apple Developer certificate:
- Right-click the app → "Open"
- Click "Open" in the security dialog
After the first time, it will open normally.
| Action | Shortcut |
|---|---|
| Open folder | ⌘ + O |
| Open file | ⌘ + ⇧ + O |
| New file | ⌘ + N |
| Save | ⌘ + S |
| Toggle reader mode | ⌘ + E |
The converter preserves:
- ✅ Headings (H1 → H6)
- ✅ Bold / Italic
- ✅ Bullet & numbered lists
- ✅ Links
- ✅ Tables (with line breaks via
<br>)
Note: Converted .md files are saved in the same folder as the source file.
- Electron — Cross-platform desktop app
- Mammoth.js — Word document conversion
- Marked — Markdown parsing
- textutil — macOS native RTF conversion
Contributions welcome! Feel free to:
- 🐛 Report bugs
- 💡 Suggest features
- 🔧 Submit PRs
MIT License — do whatever you want with it! See LICENSE for details.
Made with ❤️ for the AI community

