Skip to main content

Iterate on Markdown and verify every revision with mdview.io

Project description

mdv — preview Markdown files from your terminal

mdv renders a Markdown file the way it should look — headings, tables, code, Mermaid diagrams — and opens it in your browser. One command, no account, no configuration.

uv tool install mdview-cli    # or: pipx install mdview-cli, pip install mdview-cli
mdv notes.md

Homebrew users:

brew install gogainda/tap/mdview-cli

That's the whole workflow: mdv FILE.md publishes the file to mdview.io, opens the rendered page, and prints a link you can send to anyone. Anonymous previews last 30 days and take files up to 2 MB.

Two ways to preview

Shareable preview (default). mdv FILE.md is shorthand for mdv preview FILE.md. The title comes from the first # heading, or pass your own:

mdv notes.md
mdv preview notes.md --title "Design notes"
mdv preview notes.md --json     # print the share URLs as JSON, don't open a browser

Local-only preview. mdv open uploads nothing: it packs the file into the URL itself and rendering happens entirely in your browser. Use it for drafts that shouldn't leave your machine.

mdv open notes.md

Iterating on one document

Previews are throwaway: every run mints a new link. When you keep working on the same file — a spec, an architecture doc, a report — you want the opposite: one stable URL whose content follows your edits, and a check that every revision still renders cleanly.

Set up a free mdview.io CLI token once, then it's one command per iteration:

mdv keys set          # once (or set MDVIEW_TOKEN in CI)
mdv sync spec.md      # publish this revision, verify it, auto-repair broken diagrams

While you iterate, the document lives at its private /p/ page — only you, signed in, can see it, and the URL stays the same forever. Every sync shows the fixed, renderable version there. Broken Mermaid diagrams are repaired automatically and the fix is written back into your file (the original is kept as a timestamped backup); only documents that can't be repaired exit 1.

When — and only when — you decide to publish, make it public; and grab a PDF at any point:

mdv share spec.md     # mint the public /s/ link (from then on it follows your syncs)
mdv export spec.md    # render the current revision to spec.pdf

Useful around the loop:

mdv sync spec.md --no-fix     # fast sync: skip auto-repair, just report failures
mdv export spec.md --no-sync  # PDF of the last synced revision; local edits stay private
mdv list                      # all saved documents with their URLs
mdv unlink spec.md            # forget the file↔document link; the document stays online

Nothing is public until you run mdv share. After that, the public page serves the last synced revision — mid-edit local changes still stay private until you sync. mdv fix FILE --local repairs a file in place without creating a saved document (free accounts share the daily Quick Fix limit; Pro is unlimited).

Example session

A real session, working on a doc whose Mermaid diagrams start out broken:

$ mdv sync spec.md                 # iterate — the broken flowchart is auto-repaired (~30s)
Document: 8be0be9198400443
Private: https://mdview.io/p/8be0be9198400443
Renderable: yes (1 diagrams, 0 tables)

$ vim spec.md                      # …add two sections, each with a (broken) diagram…
$ mdv sync spec.md                 # same doc, all three diagrams repaired and verified
Document: 8be0be9198400443
Private: https://mdview.io/p/8be0be9198400443
Renderable: yes (3 diagrams, 0 tables)

$ mdv share spec.md                # happy with it — make it public
https://mdview.io/s/9a2b8fb1

$ mdv export spec.md               # …and hand over a PDF
PDF: spec.pdf

Two commands did all the work: mdv sync after every editing round, and mdv share once at the end. The fixes were written back into spec.md (originals in timestamped backups, so you can review what the repair changed — worth a glance before sharing, since a repair is guaranteed to render but not to read your mind), the private URL never changed, and the public link didn't exist until it was asked for.

When this flow fits: a document that lives longer than one paste — specs, architecture docs, reports, runbooks, agent-written docs you refine over hours or days. Use it when reviewers follow one link that must always show the latest good revision, when a PDF has to be producible at any moment, or in CI as a docs gate (mdv sync --no-fix exits 1 on broken diagrams without editing anything). For a one-off snapshot, mdv preview is enough; for reading a local file without uploading it, use mdv open.

Reference

Command Token What it does
mdv FILE.md / mdv preview no Publish anonymously, open the rendered page (30-day link)
mdv open no Render locally in the browser; nothing is uploaded
mdv sync yes Update a saved document at its private /p/ URL, verify + auto-repair
mdv share yes Make a synced document public at its /s/ URL
mdv verify yes Re-check rendering of a synced document
mdv fix yes Repair broken Mermaid diagrams, with a local backup
mdv export yes Export a synced document to PDF
mdv list yes List saved documents
mdv unlink no Remove the local file↔document association
mdv keys set/list/path/unset Manage the stored CLI token

Exit codes: 0 success, 1 document doesn't render cleanly, 2 usage error, 3 mdview.io error.

Environment: MDVIEW_TOKEN supplies the token without storing it (ideal for CI); MDVIEW_BASE_URL points the CLI at another server.

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

mdview_cli-1.0.0.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

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

mdview_cli-1.0.0-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file mdview_cli-1.0.0.tar.gz.

File metadata

  • Download URL: mdview_cli-1.0.0.tar.gz
  • Upload date:
  • Size: 16.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mdview_cli-1.0.0.tar.gz
Algorithm Hash digest
SHA256 9101f17d5d83725dd985f9ba548dd940ce499e8a4a712c7cf2e34fd260cfca76
MD5 9dd4c77e9e2089b18e67f496d82ade67
BLAKE2b-256 0079ea67c41167c859b3b15a60fc13b3728c04182c17cc42c9cbaa8c71ab5b52

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdview_cli-1.0.0.tar.gz:

Publisher: release.yml on gogainda/mdview-cli

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

File details

Details for the file mdview_cli-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: mdview_cli-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mdview_cli-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cadc6d1598f7a1765bfda29a72549144264f01f7b8bdac0d738eef8045ba6539
MD5 04f93020aafd2d99aea06a817add2b0b
BLAKE2b-256 b596f8c9eef12adf77bfd7d7a8bbfd085f31a7573bd35f25789135853280018a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdview_cli-1.0.0-py3-none-any.whl:

Publisher: release.yml on gogainda/mdview-cli

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