Concomitant294 downloadsFetches any Wikipedia article and drops it into a new or existing Note in your Vault.
Turn any Wikipedia page into a clean, fully-linked Obsidian note — in one command.
Fetches a Wikipedia article and drops it into a new or existing Note in your Vault as tidy Markdown: every Wikipedia link becomes an internal [[wikilink]], equations become Obsidian-rendered $\LaTeX$, images and animated gifs come through, sources are preserved as clickable footnotes, and most of the clutter is stripped away. What you're left with is a readable, navigable Note that plugs straight into your knowledge graph and Vault.
Obsidian is at its best when your notes are linked, yet building a web of knowledge by hand is slow, and simply copy-pasting from Wikipedia leaves you with broken formatting, dead links, and a wall of citation clutter.
Wikipedia Importer attempts to solve that:
[[wikilink]] — so an imported Wikipedia page instantly connects to everything else in your Vault, and every link becomes a doorway to the next import. (Configurable — see Link style.)$...$ and $$...$$), so they render properly instead of arriving as garbled glyphs.Images.)[[Elementary particle|fundamental constituents]] resolves to the page (Elementary particle), not the display text, so your links always point where they should.## References section at the bottom of the import. You keep the citations for when you need them without [[ISBN]]/[[doi]] junk links polluting your graph.[^1]) that jump straight to the source below, exactly like Wikipedia. Where a citation has a URL, the footnote carries an external [source] link too.Notes are tagged from Wikipedia's own categories the moment they land, so your imports organize themselves. Add your own tags as well, or turn auto-tagging off entirely.(Note: You must have [[wikilinks]] enabled for this workflow to occur.)
Link-Walking:
Wikipedia Importer: Import Wikipedia page by title command to create a new Note with the imported content.Note, find any [[wikilink]] that doesn't have a Note yet.Note and opens it.Wikipedia Importer: Import Wikipedia page matching current note title.Note will be filled with that Wikipedia page's content — complete with its links.[[wikilink]], and continue creating new notes with the aforementioned commands.Each import opens dozens (or perhaps hundreds or even thousands!) of new connections. You can follow any thread: e.g., — Physics → Quantum mechanics → Wave–particle duality → … — building a rich and interconnected weave throughout your Vault as you read — all without ever leaving Obsidian or typing a page name.
Tip: Bind that command to a hotkey (Settings → Hotkeys → search "Wikipedia Importer") and the whole loop becomes: Left-click a link, tap your hotkey, import, repeat.
Open the command palette (Ctrl/Cmd + P) and search "Wikipedia Importer":
| Command | What it does |
|---|---|
| Import Wikipedia page by title | Prompts you for a page name and imports it as a Note into a destination determined by Settings. |
Import Wikipedia page matching current Note title |
Imports the Wikipedia page whose title matches the name of the current Note — no typing required. This is the one for the Link-Walking workflow above. |
| Setting | Options | Notes |
|---|---|---|
| Overwrite existing content (Recommended ON) | On / Off | Off by default so it can't wipe a Note unexpectedly. Turn On for the re-import / refresh workflow, where it replaces the whole body of the Note. |
| Destination | Active note · Current folder · Vault root · Set folder · New folder | Where the imported Note goes. "New folder" creates a Folder named after the Wikipedia page with the Note placed inside it (nestable). |
| Note naming | Automatic / Manual | Automatic names the Note after the Wikipedia page. Manual prompts you to declare both the Wikipedia page and the name of the Note each time, so the Note name and page title can differ. |
| Wikipedia language | en, de, fr, … |
The language subdomain to pull from. en is the only language that has been tested. If you experience issues in another language, please report the issues. |
| Add title heading | On / Off | Prepends a # Title and an "Imported from Wikipedia" line. |
| Link the title to Wikipedia | On / Off | Whether the # Title is itself a link. Turn Off to avoid a redundant link — the source property already records where the Note came from. |
| Add source property | On / Off | Records the Wikipedia page URL as a source: property in the Note's frontmatter. This is the durable record of where the Note came from. |
| References appearance | Collapsed callout / Plain heading + list | Controls how the *Notes* section (explanatory Wikipedia notes that aren't citations) is displayed. Citations are always emitted as linked footnotes under ## References. IMPORTANT: You should NEVER remove sources from any sourced document! |
| Setting | Options | Notes |
|---|---|---|
| Tag location | Frontmatter / Inline / Both | Frontmatter keeps any tag as clean YAML metadata at the top (recommended). Inline places #tags in the body of the Note. |
| Fixed tags | text | Comma-separated tags applied to every import. These appear before any automatic tag and are never truncated. Blank by default. |
| Ask for tags on each import | On / Off | Prompts you for tag entries at import time. User-defined tag entries come first, before your fixed tag entries and any automatic ones. |
| Automatic tagging | On / Off | Derives tag entries from the article itself. Turn Off to use only your own tag entries. |
| Auto-tag source | Categories / Categories + title / Categories + frequent words | Where automatic tag entries come from. Wikipedia's own categories are the cleanest, as they're written by editors; optionally add the page title or the most frequent content words. |
| Max auto tags | number | A cap on automatically-derived tag entries. Your own tag entries are never truncated. |
| Setting | Options | Notes |
|---|---|---|
| Tag location | Frontmatter / Inline / Both | Frontmatter keeps tags as clean YAML metadata at the top (recommended). Inline places #tags in the body of the Note. |
| Fixed tags | text | Comma-separated tags applied to every import. These appear before any automatic tags and are never truncated. Blank by default. |
| Ask for tags on each import | On / Off | Prompts you for tags at import time. Entered tags come first, before your fixed tags and any automatic ones. |
| Automatic tagging | On / Off | Derives tags from the article itself. Turn Off to use only your own tags. |
| Auto-tag source | Categories / Categories + title / Categories + frequent words | Where automatic tags come from. Wikipedia's own categories are the cleanest, as they're written by editors; optionally add the page title or the most frequent content words. |
| Max auto tags | number | A cap on automatically-derived tags. Your own tags are never truncated. |
Settings in Obsidian.Community Plugins (ensure they are enabled).Browse, and search for Wikipedia Importer by Concomitant.Install and Enable the plugin.main.js, manifest.json, and styles.css from this repository's latest release..obsidian/plugins/wikipedia-importer/Troubleshoot Step: New plugin folders aren't auto-detected — restart Obsidian, Disable and then Enable the plugin, or toggle Community plugins off/on so it appears.
Requires Node.js (LTS).
.obsidian/plugins/wikipedia-importer/.npm install (once), then npm run build (might take a few moments).Enable the plugin in Obsidian.Use npm run dev to rebuild automatically as you edit the source.
Note, not a perfect copy of the Wikipedia page. Some formatting and navigation tools are intentionally dropped.$$...$$ markup as plain text — try switching views if it's garbled, and submit a ticket if it's broken math.[^1] markers become clickable superscripts that jump to the citation at the bottom of the Note.The plugin calls Wikipedia's public API for the rendered HTML of a page (no API key needed), walks the resulting document, and converts it element by element: anchors pointing at /wiki/... become wikilinks, <math> elements are unwrapped to their underlying $\LaTeX$, content tables become Markdown tables, reference markers become linked footnotes, and a set of known-clutter containers (navboxes, infoboxes, maintenance banners, relative-project boxes, montages) are removed. The article's categories are pulled in the same call to power automatic tag creation. The result is written into your Vault according to your Note destination, naming, link, image, and tag settings.
Built with a lot of iteration, for anyone who wants Wikipedia's knowledge web living inside their own.
Built with Claude (Opus 4.8)