Skip to main content

Fast, portable, fully offline Markdown viewer/editor for Windows.

Project description

mdvw

Fast, portable, fully offline Markdown viewer and editor for Windows.

PyPI Python CI License: MIT

mdvw rendering its README in Read mode


What it is

A small Windows desktop app that opens a .md file and renders it beautifully — with KaTeX math, Mermaid diagrams, syntax-highlighted code, live reload when the file changes on disk, and a three-mode Read / Edit / Source view. Everything needed to render is vendored into the package: no network request is made to open or view a document.

Why

Most Markdown viewers either need a browser tab, a heavy IDE, or pull fonts and scripts from a CDN at render time. mdvw is a single pip install away, opens fast, works without internet, and treats the document as untrusted — a hostile .md file can't fetch remote resources, navigate the native bridge, or overwrite your file without a conflict prompt.

Features

  • Three modes — Read, Edit (live split), Source (raw .md in a dark editor). Switch with Ctrl+1/2/3 or cycle with E.
  • Offline first — KaTeX (math), Mermaid (diagrams), highlight.js (20 languages), and webfonts all ship inside the wheel, SHA256-pinned via a manifest.
  • GFM + extensions — tables, task lists, footnotes, strikethrough. Plus ==highlight==, ++underline++, and {color:red}…{/color} / {color:#hex}…{/color}.
  • Live reload — external changes on disk re-render instantly; unsaved edits get a conflict prompt rather than being silently overwritten.
  • Outline drawer + collapsible sections — navigate by heading or collapse sections with ▲ All / ▼ All / ▶ Auto.
  • Native feel — system tray, follow-system dark/light theme, taskbar icon (M↓), .md file association via mdvw --register.
  • Hardened — 7 rounds of adversarial review before 0.1.0 (atomic saves, conflict detection, <script> breakout defense, remote-image blocking, etc. — see SECURITY.md if you're curious).

Install

pip install mdvw

Requires Python 3.13+, Windows 10/11.

Or grab the standalone onedir build from the Releases page — unzip mdvw-win-x64.zip and run mdvw.exe. No Python needed.

Usage

mdvw notes.md              # open a file
mdvw                       # open with the bundled welcome doc
mdvw --edit notes.md       # start in split-edit mode
mdvw --no-tray             # skip the system tray icon
mdvw --register            # associate .md with mdvw (HKCU, no admin)
mdvw --unregister          # remove the association

Keyboard shortcuts

Key Action
Ctrl+1 / Ctrl+2 / Ctrl+3 Read / Edit (split) / Source
E Cycle Read → Edit → Source
Ctrl+O Open file
Ctrl+S Save (atomic; prompts on disk conflict)
Ctrl+Shift+W Toggle narrow / wide preview

Markdown extensions

Beyond GitHub Flavored Markdown, mdvw understands:

==highlighted== text
++underlined++ text
{color:orange}orange{/color}, {color:#bf3989}pink{/color}

Inline math $e^{i\pi}+1=0$ and block math:

$$
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
$$

Mermaid diagrams:

```mermaid
graph LR
    A[Open .md] --> B[Edit]
    B --> C[Preview]
    C --> D[Save]
```

Security

mdvw treats every .md file as untrusted input. A hostile document cannot:

  • Break out of the JSON <script> bootstrap (all </>/& escaped as \uXXXX)
  • Shadow bootstrap DOM ids (user id attributes stripped by the sanitizer)
  • Fetch remote resources — <img src="http(s)://…">, protocol-relative //…, and UNC \\server refs all dropped
  • Navigate the WebView to a different page (all link clicks routed to the OS shell; js_api bridge stays isolated)
  • ShellExecute a local program — file: links rejected at both sanitizer and shell-open layers
  • Silently overwrite your on-disk edits — save_file checks the file's mtime/size fingerprint against what was loaded and prompts if it changed

Saves are atomic (tempfile + fsync + os.replace). Vendored JS/CSS is SHA256-verified at build time; the release workflow refuses to build if a vendor byte changed.

How it works (one paragraph)

render.py parses Markdown with markdown-it-py + plugins, sanitizes with nh3 (Rust ammonia), and rewrites user-relative URLs against the document's own directory. app.py renders a template into a per-instance HTML in %TEMP%, references packaged JS/CSS via absolute file:// URLs (no <base> — that would misdirect user links), and opens it in a pywebview window using Windows WebView2. KaTeX / Mermaid / highlight.js run in the browser post-inject.

Releasing

The project uses a single-commit + tag pattern so the PyPI artifact's source matches the tag byte-for-byte:

# 1. Write notes under `## [Unreleased]` in CHANGELOG.md, commit
# 2. Cut the release (atomic bump + changelog date + commit + tag):
python scripts/release.py 0.2.0
git push origin main v0.2.0      # triggers release.yml → PyPI + GH Release

# 3. Open the next dev cycle:
python scripts/release.py --post-release 0.3.0.dev0
git push origin main

Development

git clone https://github.com/ThomasRohde/mdvw && cd mdvw
pip install -e .[dev]
python scripts/fetch_vendor.py --verify   # make sure vendor hashes match
pytest -q                                  # run tests
ruff check src tests scripts               # lint
python -m mdvw README.md                   # try it

To upgrade a vendored library: python scripts/fetch_vendor.py --update, then commit the refreshed files and manifest.json together.

License

MIT. The bundled third-party assets keep their own licenses (KaTeX: MIT; Mermaid: MIT; highlight.js: BSD-3).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mdvw-0.3.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mdvw-0.3.0-py3-none-any.whl (1.2 MB view details)

Uploaded Python 3

File details

Details for the file mdvw-0.3.0.tar.gz.

File metadata

  • Download URL: mdvw-0.3.0.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mdvw-0.3.0.tar.gz
Algorithm Hash digest
SHA256 20ae5dc780d4d26c1497e59bb04b5d64e4162f9a855b9393639dfc5f70216ded
MD5 4edfb13320350e42121236cd8dd674fb
BLAKE2b-256 5c7cdf5cc4fd31cde0399b54dc295776de7b6d785b34925acc4f04b57ed19c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdvw-0.3.0.tar.gz:

Publisher: release.yml on ThomasRohde/mdvw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mdvw-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: mdvw-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mdvw-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 af217df0b6b372ea0471f5cf56d7db52f72c7a7410c58d432b7551deac0c3362
MD5 b3f2f755dad806c3388843075ef1cc06
BLAKE2b-256 48dc0463748542365493854e9977183215d3fb0e4ad4d81268b6986aa95c7d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdvw-0.3.0-py3-none-any.whl:

Publisher: release.yml on ThomasRohde/mdvw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page