How to share a Markdown file
Markdown is the format everything writes and nothing reads. Notes, READMEs,
AI output, documentation — it arrives as .md, and then you send
it to someone and they see this:
## Heading
**bold**
| col | col |
Not a heading, not bold, not a table. The syntax, raw. Because almost nothing renders Markdown by default — it opens as plain text in every editor, and most chat apps show it as a code block.
The short answer
It has to be rendered somewhere other than the recipient's machine. Options below, cheapest first.
Drop your file here — you get a link in a few seconds
No account needed · up to 1 GB and 1000 files
The four options
1. Send the file and hope
Paste it into an email, a Slack message, a text. The recipient gets the raw source. Fine if they are technical and you both know it is Markdown. Otherwise you have made them do the work.
2. Paste it into a Gist
GitHub renders .md files in its web view, so a Gist gives you a
formatted page. This works well. The friction:
- You need a GitHub account, and the recipient may too, depending on visibility
- Gists are for code — colleagues will read it as a snippet, not a document
- Relative images and links do not come along
3. Paste it into a notes app
Notion, Obsidian, Bear, an online Markdown editor. All render it. All want an account from at least one of you, and the link often lands the recipient in an app shell rather than the document.
4. Upload the file, send the link
Markdown is one of the formats Plopino renders by default:
- Open plopino.com
- Drag the
.mdfile onto the page - Send the link — it opens as a typeset page
Headings, lists, tables, code blocks and links all render. There is a Download button in the corner, so the recipient can still get the original file — the link serves both purposes.
If your document has images next to it, drag the whole folder instead. The relative image paths keep working.
Try it with a .md file Renders as a page; the original downloads from the same link.Questions people actually ask
Does it render tables and code blocks?
Yes — headings, emphasis, lists, tables, fenced code blocks, blockquotes, links. Rendering happens in a background worker and is cached, so it does not slow the first view down for the next person.
Can I send the .md as an attachment instead?
You can, and it will arrive. What arrives is a text file. If the point is that the other person reads it, the file is the wrong delivery format — which is the whole reason this page exists.
What about a whole documentation folder?
Drag the folder. It uploads with its structure, generates a navigation page,
and each .md inside renders when opened. README
files are treated as documentation rather than as the entry page, so a real
index.html still wins if there is one.
Can I update it later without resending the link?
Yes, if you were signed in when you uploaded. The link stays the same and serves the newest version; the previous one is kept as a version you can switch back to or delete.