Markdown is plain text with a light formatting syntax, so it stays readable as-is and converts cleanly to HTML, PDF or Word.
Common Uses
File storage and sharing
Data exchange between applications
Content distribution
Markdown Conversion FAQ
What is a Markdown document?
+
Markdown is a plain-text markup format. The file itself is human-readable; the formatting is applied by a renderer. Markdown is popular for technical writing because it diffs cleanly in version control. The content is identical plain-text markup; only the filename differs, and both extensions are parsed by the same renderers.
What is lost when a formatted document becomes Markdown?
+
Everything except the words. Markdown holds characters and line breaks, so fonts, sizes, colours, tables, images and footnotes all disappear on the way in. That is exactly why it is used: it is the format nothing can misinterpret, it opens on any machine ever built, and it is the right target when the text is what matters and the presentation is not. It inherits every Markdown ambiguity — dialect differences around tables, footnotes and raw HTML — with no benefit over .md.
Why do professional tools hand back Markdown?
+
Because it is built to be worked on rather than distributed. The format keeps quality and structure through repeated opens, edits and re-saves, which is what a production pipeline needs and what a delivery format explicitly trades away. The consequence is size: keep Markdown as the master and convert a copy for anyone who only needs to look at it. The long form is what Jekyll, Hugo and several documentation pipelines look for by default, so it fits straight into those builds.
Is Markdown the same format as its other extension?
+
Yes. This extension and the longer or shorter name you see alongside it describe one underlying format, and anything that reads either reads both. The two names are historical: an eight-character filename limit from the DOS era, a vendor naming its application rather than its file format, or two programs that simply defaulted differently. Converting either produces the same result, so use whichever extension the software at the other end is expecting.
What if my Markdown is a scan rather than real text?
+
Then nothing downstream can read it until OCR has run. A scanned page is a picture of words: it looks fine, and searching, copying or converting to an editable document all come back empty. Optical character recognition adds a real text layer over the image, after which the words are selectable and the conversion produces an actual document instead of a wrapper around a photograph.
Does a Markdown have fixed pages?
+
No — content flows, and pages appear only when something decides on a page size. Change the font, the margins or the screen and the page numbering changes with it. That is why a page reference from a Markdown is unreliable, and why converting to a fixed-layout format is the step that makes page numbers mean something.
Can I keep editing after converting my Markdown?
+
That depends entirely on the target. Converting to another editable document format keeps the structure — styles, headings, tables — so work continues normally. Converting to a page or image format produces something for reading rather than writing, and getting back from there means a second conversion that reconstructs structure rather than restoring it. Keep the Markdown as the working copy either way.
Who controls the Markdown format?
+
Nobody, and that is the point of it. The specification is public, anyone may implement it without asking or paying, and no company can change the terms later — which is why archives, standards bodies and public institutions specify formats like this one for anything that still has to open in twenty years. The trade is not compatibility, which is excellent; it is that there is no vendor to call when some tool implements the spec badly. Markdown is the same syntax as .md, spelled out in full — some editors and static site generators expect the long extension.
What is the best format to convert Markdown to?
+
For sharing without edits, convert Markdown to PDF — every device opens it the same way. For further editing, convert to DOCX. For data extraction from spreadsheets, convert to CSV.
Does converting Markdown preserve formatting?
+
When you convert Markdown to a similar document format (Word, ODT, PDF), formatting, fonts, images and tables are preserved with high fidelity. When you convert to a plain-text format (TXT, MD), styling is stripped down to the underlying words.