MediaWiki to Markdown Converter

Migrate Wikipedia / MediaWiki content to Markdown. Handles wikitables, File: embeds, internal links.

Summary — What Free MediaWiki to Markdown Converter Does

What This Free Tool Is

Free MediaWiki to Markdown Converter transforms wikitext from Wikipedia, Wikimedia Commons, Fandom, or any self-hosted MediaWiki install into clean GitHub-Flavored Markdown. Headings, bold, italic, internal and external links, wikitables, File: embeds, syntaxhighlight code blocks, and lists all convert correctly.

Privacy: This tool runs entirely in your browser. Your text is never uploaded, logged, or cached. Close the tab and it's gone. Verify in DevTools → Network: zero requests fire.

Why It's Free (And How We Keep It Free)

Migrating a wiki shouldn't require a paid SaaS. This tool exists because that conversion is a common one-time chore, and it should be as frictionless as Copy → Paste → Convert. Runs entirely in your browser.

Table of Use

At-a-Glance Reference

InputOutputTypical sizeSpeedLogin needed
MediaWiki wikitextMarkdown (.md)Up to 5 MB< 50 msNo

MediaWiki to Markdown Converter Features

Here's what this free tool does in detail — every feature is built to solve real problems, runs entirely in your browser, and is free forever.

Headings, Emphasis, Links

== Heading == becomes ## Heading. '''bold''' becomes **bold**, ''italic'' becomes *italic*. Internal links [[Page|alias]] become [alias](Page), and external links [url text] become [text](url).

Going the other way? Use the Free Markdown to MediaWiki Converter. For HTML exports, the Free Markdown to HTML Converter works the same way.

File: Embeds to Markdown Images

By default, [[File:image.jpg|thumb|alt]] and [[Image:image.jpg|alt]] become ![alt](image.jpg) — standard Markdown image syntax. Toggle Files to images off if you'd rather keep them as plain-text references for later processing.

After conversion, run the output through the Free Markdown Image Extractor to audit every image reference.

Wikitables to GFM Tables

Multi-row wikitables starting with {| class='wikitable' become properly-aligned GFM pipe tables. The first row is detected as a header (! cells), subsequent rows use |- separators, and the output uses fixed-width column padding for readability.

Clean up the table afterwards with the Free Markdown Table Sorter or the Free Markdown Table Transposer.

Code Blocks from syntaxhighlight / pre / source

<syntaxhighlight lang='js'>, <source lang='js'>, and plain <pre> blocks all become fenced Markdown code blocks with the language hint preserved. <code> inline tags become single-backtick inline code.

Pair with the Free Markdown Formatter to tidy up the converted output.

How To Use Free MediaWiki to Markdown Converter

Step 1 — Paste wikitext

Copy from a Wikipedia source editor, a Fandom page, or your own MediaWiki. Or click Load example for a representative sample.

Step 2 — Toggle File: handling

File embeds become Markdown images by default — toggle off if you need plain refs.

Step 3 — Copy or download the Markdown

Use the output in a README, Notion, Obsidian, or any Markdown target.

Who Can Use This Tool

Wikipedia archivists

Save Wikipedia articles as Markdown for offline reading or personal knowledge bases.

Fandom / Gamepedia migrators

Move fan wiki content to a Git-based Markdown site.

Internal wiki migrators

Retire a MediaWiki install and move to a Git-based Markdown documentation repo.

Content researchers

Extract wikitext for analysis in a Markdown-friendly pipeline.

Anyone building a personal wiki in Obsidian

Pull reference articles from Wikipedia into an Obsidian vault with correct formatting.

Frequently Asked Questions

Is this MediaWiki to Markdown tool free?

Yes. Free forever, no account required.

Does it handle wikitables?

Yes. {| class='wikitable' / |} tables become GFM pipe tables with the first row as header.

What about templates?

{{Template|arg}} patterns are stripped. For heavy template use, expect manual cleanup after conversion.

Does it preserve internal link syntax?

Internal links [[Page|alias]] become [alias](Page). You may want to post-process the URLs if your target isn't a wiki.

Is my wikitext uploaded?

No. Runs 100% in your browser.

Related Free Markdown Tools