Double-click a downloaded
.mdfile and get a code editor or a screen of#,*, and backticks—not because the file is broken, but because you are looking at source, not rendered layout. Once you see that, opening, previewing, and sharing become straightforward.

What Is an .md File?
An .md file is Markdown—plain text with lightweight markup. # marks headings, * marks bold or lists, backticks mark code. These symbols are layout instructions for a renderer, not final styling.
That explains why double-click fails: the OS does not associate .md with a renderer, so Notepad or a code editor shows raw symbols—or the system says it cannot open the file. Unlike .docx, which opens to layout, Markdown must be rendered first. The question is not "which app opens the file" but "what turns source into formatted output."
How Do I Preview .md Online (Easiest)?
Fastest path: drag .md into a browser Markdown editor—source left, live preview right with headings, lists, code blocks, and tables in final form. Benefits:
- No install: open a page and go—no Typora, VS Code, or plugins;
- WYSIWYG preview: edit while seeing GitHub-style rendering;
- Stays local: front-end rendering, file not uploaded—fine for private drafts.
In the Markdown online editor, click "Import file" or drag your .md in—the right panel shows formatted output immediately. If you only need "what does this document look like," this step is enough.
How Do I Convert .md to Word or PDF?
When the recipient needs a formal file—a client, advisor, or non-technical colleague wants Word or PDF—preview is not enough; you need format conversion. The goal is preserving heading levels, lists, code blocks, and tables—not copying raw symbols.
Drop .md into the Markdown convert tool, choose PDF / Word / image / HTML, start conversion, download. PDF uses professional fonts and highlighted code—"ready to email" quality; Word is real .docx structure, editable in Word—not "HTML with a new extension."
How Do I Share .md with Someone Who Doesn't Know Markdown?
Generate an online preview link—they open it in any browser with full formatting, no install, no account. Easier than sending raw .md (they cannot read it) or bouncing attachments.
In the Markdown share tool, paste or upload content, generate a link, send it. Links expire automatically—good for temporary previews of specs, technical proposals, or meeting notes to PMs, designers, or clients.
Which of the Three Paths Should I Use?
Match your goal:
| Your goal | Approach | Tool |
|---|---|---|
| Glance / keep editing | Online preview | Markdown online editor |
| Formal delivery (client/advisor) | Convert to Word / PDF | Markdown convert |
| Temporary share for others | Preview link | Markdown share |
Rule of thumb: edit → editor; deliver → convert; circulate → link.
Exception: You Only Need Plain Text
If the doc is short and layout does not matter, any text editor (Windows Notepad, Mac TextEdit, VS Code) opens .md and you read all the words—# and * stay visible. Fine when you only need content, not appearance. Markdown was designed so source stays human-readable. When you need layout, use one of the three paths above.
Summary
.md "not opening" is not file damage—it is source that needs rendering. Three lines to remember: view/edit with the online editor; formal files via convert to Word/PDF; share with others via share tool preview links. Once you separate source from rendered output, .md files stop being a mystery.