MD is the Markdown extension: plain text with a light formatting syntax that converts cleanly to HTML, PDF or Word.
Common Uses
File storage and sharing
Data exchange between applications
Content distribution
MD Conversion FAQ
What is an MD document?
+
MD is a plain-text markup format. The file itself is human-readable; the formatting is applied by a renderer. MD is popular for technical writing because it diffs cleanly in version control. Markdown is plain text with lightweight conventions — hashes for headings, asterisks for emphasis, hyphens for lists.
What is lost when a formatted document becomes MD?
+
Everything except the words. MD 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. Markdown has no single standard, so tables, footnotes and embedded HTML behave differently between CommonMark, GFM and everything else.
Why do professional tools hand back MD?
+
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 MD as the master and convert a copy for anyone who only needs to look at it. Markdown is the lingua franca of documentation, README files, static site generators and note-taking apps, and it diffs cleanly in git.
What if my MD 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 an MD 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 an MD 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 MD?
+
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 MD as the working copy either way.
Who controls the MD 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. MD is Markdown, John Gruber’s 2004 plain-text syntax for writing structured documents that stay readable as source.
Can I convert a whole folder of MD files in one go?
+
Yes — drop them in together and they are queued as one job rather than converted one at a time, with the same settings applied across the batch and the results returned together. Free accounts run a couple concurrently; a paid plan lifts both the concurrency and the per-file size limit, which is what makes converting a large archive practical.
What is the best format to convert MD to?
+
For sharing without edits, convert MD 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 MD preserve formatting?
+
When you convert MD 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.