惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
GitHub - GRVYDEV/marky: A lightweight easy to use markdow...
GRVYDEV · 2026-04-17 · via Hacker News

A fast, native markdown viewer for macOS and Linux built with Tauri v2, React, and markdown-it. Beautiful rendering of tables, code blocks, task lists, math, and diagrams — with live reload.

Stars Badge Forks Badge

View Demo • Install • Request Features

Marky screenshot

Table of Contents

  1. About The Project
    • Features
  2. Install
    • Homebrew (macOS)
    • Ubuntu / Debian
    • AppImage (Linux)
    • From Source
  3. Usage
  4. Keyboard Shortcuts
  5. Development
  6. Built With
  7. Roadmap
  8. Contributing
  9. Contact Me

About The Project

Marky is a desktop markdown viewer designed for one thing: opening .md files from the terminal and getting beautiful, instant rendering. Launch it with marky FILENAME to view a file or marky FOLDER to open a folder as a persistent workspace (Obsidian-style). Files reload live as they change on disk — perfect for viewing Claude-generated plans, documentation, or notes as they're being written.

Features

  • CLI-firstmarky README.md opens a window. marky ./docs/ opens a folder.
  • Live reload — edits on disk (from your editor, Claude, etc.) update the view instantly.
  • Folders — add folders as persistent workspaces (Obsidian-style). They appear in a sidebar and restore on launch.
  • Cmd+K command palette — fuzzy-search files across all open folders, powered by nucleo.
  • Syntax highlightingShiki with VS Code themes for accurate, beautiful code blocks.
  • Math — KaTeX rendering for $inline$ and $$display$$ math.
  • Mermaid diagrams — fenced mermaid blocks render as SVG.
  • GFM — tables, task lists, strikethrough, autolinks, footnotes.
  • Light & dark themes — follows system preference or toggle manually.
  • Sanitized rendering — all HTML is run through DOMPurify. Safe to view untrusted markdown.
  • Small & fast — native webview, no Electron. Production .dmg is under 15 MB.

Install

Homebrew (macOS)

NOTE: I am currently waiting for apple developer review so for the time being the app is not signed. This will be fixed soon.

brew tap GRVYDEV/tap
brew install --cask GRVYDEV/tap/marky
# This is temporary until I can sign the binary
xattr -cr /Applications/Marky.app

Ubuntu / Debian

Download the .deb for your architecture from the latest release:

# amd64
curl -LO https://github.com/GRVYDEV/marky/releases/latest/download/marky_0.1.2_amd64.deb
sudo dpkg -i marky_0.1.2_amd64.deb

# arm64
curl -LO https://github.com/GRVYDEV/marky/releases/latest/download/marky_0.1.2_arm64.deb
sudo dpkg -i marky_0.1.2_arm64.deb

AppImage (Linux)

Download the AppImage from the latest release:

curl -LO https://github.com/GRVYDEV/marky/releases/latest/download/Marky_0.1.2_amd64.AppImage
chmod +x Marky_0.1.2_amd64.AppImage
./Marky_0.1.2_amd64.AppImage

From Source

Requires Rust, Node.js, and pnpm.

git clone https://github.com/GRVYDEV/marky.git
cd marky
pnpm install
pnpm tauri build
./scripts/install-cli.sh

The install script symlinks marky to ~/.local/bin/. Make sure that's on your PATH:

# bash/zsh
export PATH="$HOME/.local/bin:$PATH"

# fish
set -Ux fish_user_paths $HOME/.local/bin $fish_user_paths

Usage

# Open a single file
marky README.md

# Open a folder as a workspace
marky ./docs/

# Open with no args — restores your last session
marky

Keyboard Shortcuts

Shortcut Action
Cmd+K Command palette (fuzzy file search)
Cmd+O Open file
Cmd+Shift+O Add folder
Cmd+F Search in page

Development

pnpm install
pnpm tauri dev       # dev server with HMR

Run Tests

# Frontend
pnpm test

# Rust
cd src-tauri && cargo test

Project Structure

src-tauri/       Rust backend — CLI, file I/O, file watching, folder registry, fuzzy search
src/             React frontend — markdown pipeline, UI components, theme
src/components/  App components (Viewer, Sidebar, CommandPalette, etc.)
src/components/ui/  shadcn/ui primitives
src/lib/         Core logic (markdown-it config, Shiki, Tauri IPC wrappers)
src/styles/      Tailwind base + markdown prose styles
scripts/         Install helpers

Built With

Layer Tech
Desktop shell Tauri v2
Frontend React + TypeScript + Vite
Markdown markdown-it
Syntax highlighting Shiki
Math KaTeX
Diagrams Mermaid
Fuzzy search nucleo
UI primitives shadcn/ui
Styling Tailwind CSS
File watching notify

Roadmap

  • Built-in AI chat — chat with Claude Code or Codex directly inside your markdown documents
  • Git diff review — view and review local git diffs without leaving the app

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch: git checkout -b feature/AmazingFeature
  3. Commit your Changes: git commit -m 'Add some AmazingFeature'
  4. Push to the Branch: git push origin feature/AmazingFeature
  5. Open a Pull Request

Before submitting a PR:

  • Run pnpm test and cd src-tauri && cargo test
  • Run pnpm typecheck
  • Actually open a markdown file with pnpm tauri dev and verify it renders correctly

Contact Me

GitHub @GRVYDEV  ·  Twitter @grvydev