Browser extension from Obsidian that writes web content directly as Markdown into a vault. It is not just a “save for later” button, but a programmable ingest layer: with templates, selectors, and variables, it decides which part of a page enters the wiki and in what form.

Why It Matters

Most clipping tools save too much or the wrong thing: full HTML, noisy reader views, or screenshots. Obsidian Web Clipper is more interesting because it combines extraction and structuring. You are not limited to “save this page.” You can define: take the title, source, description, and exactly this DOM section.

That is crucial for an LLM wiki. Good knowledge systems rarely fail at the model. They fail at input quality. If the raw material is already shaped precisely, later summarization becomes cleaner too.

Core Ideas

Templates instead of one-size-fits-all import: a blog post, tweet, and YouTube video need different logic. The Web Clipper allows URL-based templates with different fields, selectors, and frontmatter layouts.

DOM-selective clipping: instead of interpreting the whole page, clip only the relevant section. That saves tokens, reduces noise, and makes the result more robust.

YouTube transcripts as knowledge input: transcript blocks can be extracted via CSS selectors and turned into normal Markdown. The media container disappears; what remains is processable text.

Bridge between web and wiki: the Web Clipper is the capture layer in an LLM Knowledge Base workflow. It does not replace curation, but it delivers raw material in a form an agent can reliably work with.

Connections

  • Obsidian - the product context
  • Interpreter - lifts clipping from extraction into transformation
  • Markdown - target format remains structured plain text
  • LLM Knowledge Base - precise capture is what makes cumulative knowledge workflows practical
  • kepano - pushes this product direction publicly

Sources