Windows Markdown Viewer: Open and Preview .md Files

September 11, 2026 · 9 min read

Windows Markdown Viewer: Open and Preview .md Files

The quickest Windows Markdown viewer you already have is Notepad on Windows 11, which now renders headings, bold, lists, and links from a .md file. When a file contains tables, code, or diagrams you'll want more. This guide climbs from zero-install options to a dedicated viewer, with a feature matrix so you pick the lightest one that renders your file.

How to Open an .md File on Windows

The search phrase "how to open md file on windows" has a one-line answer: right-click, Open with, pick a program. The longer answer is that an .md file is plain text, nothing more.

Windows doesn't know what to do with the extension out of the box. A double-click either opens Notepad or shows the "How do you want to open this file?" prompt. Pick any of the programs in this post, and the same steps cover how to open md files on Windows 10 and 11 alike.

What you see depends on the program. A plain text editor shows the source: # Heading, **bold**, - [ ] task. A viewer renders it: a large heading, bold text, a checkbox. Both are correct; the raw view is what the file contains, and the rendered view is what the author intended. If you've never seen the syntax before, the plain-English introduction to Markdown explains why files look like this.

To stop the prompt appearing every time, open Settings, then Apps, then Default apps, type .md into the file-type search box, and choose a default. Microsoft documents the steps on its change default apps page. Do the same for .markdown if you receive files with the long extension.

Windows Markdown Viewer Options From Lightest to Heaviest

Here is every markdown viewer Windows can run, from lightest to heaviest, scored on the features that trip people up.

OptionInstallTablesTask listsCode highlightingMermaidMathDark modeDouble-click to open
Notepad (Windows 11)NoneYes, in current buildsNot documentedNoNoNoFollows systemYes
Browser editor (this site)NoneYesYesYesYesYesYesNo, paste the text
VS Code previewVS CodeYesYesYesYesYesYesYes, then Ctrl+Shift+V
Markdown Reader extensionChrome, Edge, or FirefoxYesYesYesYesYesYesYes, with file URL access
MarkText 0.19.1Desktop appYesYesYesYesYesYesYes

Every row was checked against the tool's own documentation or a test file in September 2026. The Notepad row is the one that changes fastest, because Microsoft is still adding syntax to it.

Can Windows 11 Notepad Read Markdown?

Yes. Microsoft's Windows Insider blog announced text formatting in Notepad in May 2025 with version 11.2504.50.0: bold, italic, headings, simple lists, and hyperlinks, driven by Markdown syntax. Open an .md file and Notepad shows the formatted view; a toggle in the status bar or the View menu switches back to raw syntax.

Microsoft kept adding syntax in later Insider updates, including tables and nested lists, and the July 2026 release (version 11.2606.15.0) in the Notepad release notes confirms formatting now applies to both .md and .markdown files. The markdown preview Windows 11 ships with is enough for a README with headings, a table, and a bulleted list.

For anything beyond that, Notepad shows the raw characters: no fenced code highlighting, no task-list checkboxes, no diagrams. Setup details, what each Notepad version renders, and the Notepad++ alternative all live in the Notepad Markdown post, so this section stays short.

Preview Any .md File in Your Browser Without Installing Anything

On a locked-down work PC, the browser is often the only program you can rely on. Open the .md file in Notepad, press Ctrl+A then Ctrl+C, and paste into the editor below. The right-hand pane renders GFM tables, task lists, code blocks, strikethrough, and KaTeX math, and it draws Mermaid diagrams from fenced mermaid blocks, which is everything Notepad can't do.

Release checklist

Step Owner Done
Tag the build Priya yes
Update CHANGELOG Sam no
  • Run the test suite
  • Sign the installer

Count the Markdown files in a folder:

Get-ChildItem -Filter *.md -Recurse | Measure-Object

Inline math renders too: E=mc2E = mc^2

Old step: upload to FTP

67 words360 characters19 lines
Markdown

The full-page version at /editor has a Download .md button for saving edits back to a file. The acknowledged limitation is that there's no Open button and no drag-and-drop for local files; you paste the text in. That's a deliberate trade-off: nothing leaves your machine until you choose to convert it.

Is There a Good Markdown Viewer for Windows Built Into VS Code?

If VS Code is already installed, you don't need a separate viewer. Its Markdown preview is built in, and the VS Code Markdown docs list the two shortcuts that matter. Ctrl+Shift+V opens the rendered preview in a tab, and Ctrl+K V opens it side by side with the source. The preview renders KaTeX math and Mermaid diagrams without extensions, and it scrolls in sync with the editor.

Set VS Code as the default app for .md and a double-click opens the source; one more shortcut gives you the rendered view. We prefer this over a dedicated viewer on any machine that has VS Code, because there's one less program to keep updated. The VS Code Markdown guide covers the preview settings and the extensions that add linting and table formatting.

The one gap: VS Code opens a whole workspace UI to show a single file, which feels heavy when you only want to read a README from a download.

Can I View Markdown Files in Chrome or Edge?

Not by default. Chrome and Edge treat a local .md file as plain text and show the raw source. A viewer extension fixes that. Markdown Reader is available for Chrome, Edge, and Firefox and renders GFM with footnotes, math, flowcharts, syntax highlighting, and a table of contents, with light and dark themes.

Local files need one extra step in Chrome and Edge: open chrome://extensions (or edge://extensions), click Details on the extension, and turn on Allow access to file URLs. Firefox grants that access by default. After that, drag any .md file onto a browser window, or set the browser as the default app for .md, and the file renders like a web page.

This is the lightest markdown reader Windows users can set up with double-click-to-open and full GFM rendering, and it needs no admin rights on most managed machines.

MarkText and Other Dedicated Windows Viewers

When you want a real window with a file menu, MarkText is the open source pick. The MarkText releases page shows v0.19.1 from 6 June 2026 as the current stable build, with a 0.20.0 release candidate published in September 2026. The project is active again after a quiet period. It renders CommonMark and GFM, including tables, task lists, math, and Mermaid, and it's an editor as well as a viewer.

The Microsoft Store lists several small viewers if you search for md viewer Windows apps there. Check the Updated date on the listing before installing. Several Windows viewers stopped receiving updates years ago, and an abandoned viewer falls behind on GFM features such as task lists and Mermaid.

If you find yourself editing more than reading, the best Markdown editors comparison is the list to read next. Typora and Obsidian both open .md files on Windows, but they're editors first, and this post is about viewing.

Which Markdown viewer should a Windows user pick?

  • A README with headings and bullets: Windows 11 Notepad. Already installed.
  • A file with tables, code, or diagrams, on a machine you can't install on: paste it into the browser editor.
  • VS Code already installed: Ctrl+Shift+V, done.
  • Many files, double-click to open, no admin rights: Markdown Reader in Chrome or Edge with file URL access on.
  • A dedicated app with a file menu: MarkText 0.19.1.

Markdown Viewer for Windows FAQ

The right Windows Markdown viewer for you depends on what's in the file, not on which app has the best reviews. Start with Notepad, and move to the editor or VS Code when you hit a table or a code block. Install MarkText or a browser extension only when you open .md files every day. Each step up adds rendering features; none of them is required for a plain README.