Convert Markdown to Emacs Org-mode with star headlines, /italic/ slashes, ~code~ verbatim and [[url][text]] links, all in the browser
- Runs locally
- Category Format Converter
- Best for Turning pasted content or local files into a handoff-friendly format.
What this tool does
Free Markdown to Org-mode converter for Emacs users who keep their notes, docs and tasks in .org files. Paste Markdown on the left and read clean Org-mode on the right. The tool rewrites every construct that differs between the two formats: an ATX heading becomes a star headline with one star per level, bold becomes a single-asterisk *bold*, italic becomes slash-wrapped /italic/, strikethrough becomes +del+, inline code becomes ~verbatim~, a fenced block becomes a #+BEGIN_SRC block, a link becomes the [[url][text]] form and an image becomes a bare [[url]] that Org shows inline. Bullet and numbered lists carry over, and a block quote becomes a #+BEGIN_QUOTE block. Everything runs in your browser tab, with one-click copy and a shareable link that reproduces your exact input. Nothing is uploaded, so a private note never leaves the page while you convert it.
Tool details
- Input
- Files + Text + Numbers
- The page exposes text boxes, numeric controls, file pickers, or structured inputs depending on the tool.
- Output
- Live result + Copy
- The result area focuses on usable output, with copy, download, or preview actions when supported.
- Privacy
- Browser-side processing
- The main tool logic does not call an external API, so inputs normally stay in the current tab.
- Save / share
- Shareable URL state
- Key settings are encoded in the URL so another person can reopen the same setup.
- Performance budget
- Initial JS <= 9 KB
- No WASM budget is declared, keeping the tool quick to open on mobile.
- Best fit
- Format Converter · Developer
- Category and role tags drive related tools, internal links, and quick fit checks.
How to use
-
1. Input
Paste or drop your content into the tool panel.
-
2. Process
Click the button. All processing is local in your browser.
-
3. Copy / Download
Copy the result or download to disk in one click.
How Markdown to Org-mode fits into your work
Use it when the main problem is getting content from one practical format into another.
Conversion jobs
- Turning pasted content or local files into a handoff-friendly format.
- Previewing a conversion before you use it in a larger workflow.
- Cleaning small format mismatches without opening a full editor.
Conversion checks
- Try a small sample first when the source format is messy.
- Check character encoding, separators, and line endings after conversion.
- Keep the source until the converted output has been reviewed.
Good next steps
These links move the current task into a more complete workflow.
- 1 Markdown to reStructuredText Convert Markdown to RST for Sphinx and Python docs, with matched heading underlines, double-backtick code and `text <url>`_ links, in the browser Open
- 2 Markdown to AsciiDoc Converter Turn GitHub Markdown into clean AsciiDoc, headings, source blocks, url[text] links and image:: macros, all in your browser Open
- 3 Markdown to HTML Convert Markdown to clean HTML — headings, lists, code, links, images, tables — instant live preview, browser-only Open
Real-world use cases
Move a Markdown README into your Org notebook
You keep everything in one big notes.org, but a project README is Markdown. Paste it here, get Org with the headings as stars, the code fences as #+BEGIN_SRC blocks and the links as [[url][text]], then yank the result under a headline in your notebook. No hand-editing every asterisk and every link by hand.
Bring meeting notes from a Markdown app into Emacs
Your team writes meeting notes in a Markdown editor, but you live in Emacs and want them in your agenda. Convert the note in one paste, keep the bullet lists and block quote intact, and the action items become plain Org list lines you can promote to TODO headlines later.
Draft in Markdown, archive in Org-mode
You think faster in Markdown on your phone, but your long-term archive is a folder of .org files. Write the page in Markdown, paste it here on your laptop, and save the Org output into the archive. You keep mobile authoring speed and your Emacs export pipeline keeps the Org it wants.
Fix emphasis that broke after a paste into Org
Someone pasted Markdown straight into an .org file and every **bold** and *italic* showed up as raw asterisks because Org wants single markers and a slash for italic. Run the original Markdown through here and the emphasis comes out as *bold* and /italic/, so the whole page renders correctly in Emacs.
Common pitfalls
Leaving Markdown's double asterisks for bold. Org bold is a single asterisk, *bold*, and a doubled **bold** renders as a literal asterisk plus emphasis, which looks wrong. The converter collapses double asterisks to single ones for you.
Using asterisks for italic in Org. Org italic is slash-wrapped, /italic/, not *italic*, which Org reads as bold. Pasting Markdown italic straight in flips the meaning; the tool rewrites *italic* to /italic/ so it renders as you intended.
Keeping Markdown link syntax. Org does not understand [text](url); it needs [[url][text]] with the URL first inside double square brackets. Pasting the Markdown form leaves the link as visible literal text on the rendered Org page.
Privacy
The whole conversion — star headlines, source blocks, link rewriting, every regex pass — is plain JavaScript that runs inside your browser tab. Your Markdown is never uploaded and there is no logging of what you paste. The one caveat: the shareable URL encodes your input in the query string, so a share link pasted into chat records that text in the recipient server's access log. For a private journal or note, use the copy button and paste the Org output directly rather than sharing the URL.
FAQ
Tool combos
Folks in your role tend to reach for these alongside this tool.
- Add Line Numbers Number every line of pasted text — set start, step and separator, zero-pad to align, skip blanks, or strip numbers back off — browser-only
- AES Text Encryptor Encrypt & decrypt text with a password — AES-256-GCM + PBKDF2 via WebCrypto — 100% in your browser, nothing uploaded
- Affine Cipher Encoder & Decoder Encrypt and decrypt the ax+b affine cipher with live modular-inverse check, browser-only
- Age Difference Calculator The exact gap between two birthdays — years/months/days, percentage, and the date one person is twice the other's age — browser-only