Getting Started
Download
Download the latest .dmg from the Releases page. The app is signed and notarized by Apple.
Build from Source
Prerequisites
Steps
bash
# Clone the repo
git clone git@github.com:ekino/MarkdownViewer.git
cd MarkdownViewer
# Install dependencies
npm install
# Run in development mode
npm run tauri dev
# Build for production (.app + .dmg)
npm run tauri buildThe built app will be at src-tauri/target/release/bundle/macos/Markdown Viewer.app.
Usage
GUI
- Launch the app
- Click Open folder or press Cmd+O
- Select a folder containing
.mdfiles - Browse and read your documentation
CLI
bash
# Open a specific folder
mdv ~/my-docs
# Open a single file (loads its parent directory in the sidebar)
mdv ~/my-docs/README.mdExamples
The app includes a built-in View examples button on the welcome screen that loads sample documents showcasing all supported features. These examples cover code highlighting, math, diagrams, alerts, footnotes, tables, and more.
