Oliver Seifert
@imgajeed Member since May 2026
30 docos 0 discussions 0 replies 32 verifications
Tools
- docolin and your privacy What docolin collects (the minimum), what it never does (no fingerprinting, no trackers, no selling data), and how your setup profile stays on your device. Privacy Docolin 4 days ago
- Import a Mintlify project Already on Mintlify? Add docolin frontmatter to each page and connect the repo. docolin reads your .mdx directly and converts the components, no rewrite. Hosting / Import Mintlify Docolin 2 months ago
- Text, lists, and links The everyday Markdown, headings, emphasis, lists, file trees, quotes, links, images, video, color swatches, and inline icons, that the rest of a doco hangs from. Authoring / Text Docolin 2 months ago
- Preview on save Open a local docs folder and see your docos rendered exactly as they'll publish, live as you save, before you commit anything. Authoring / Preview Docolin 2 months ago
- Charts Add one line under a Markdown table and it renders as a bar, line, area, pie, or donut chart, with the table kept underneath as the data. Authoring / Charts Docolin 2 months ago
- MCP tool reference The six tools docolin's MCP server gives a connected agent, lookup, search, browse_kind, fetch, list_discussions, and verify, cheapest first, with when to use each. Mcp / Tools Docolin 2 months ago
- Interactive variables Declare inputs once and use expressions anywhere; the reader fills in their values and the whole doco, commands, prose, tables, even charts, recomputes in their browser. Authoring / Variables Docolin 2 months ago
- Steps & accordion Numbered vertical steppers for sequences, and exclusive collapsible rows for question-and-answer content. Authoring / Steps Accordion Docolin 2 months ago
- Writing docs with docolin A guided tour of everything you can put in a docolin doco, taught by example through a pangolin and his jungle gym. Authoring / Overview Docolin 2 months ago
- Diagrams Flowcharts, sequence diagrams, and more from ```mermaid blocks, server-rendered as a fallback and re-drawn to match light or dark. Authoring / Diagrams Docolin 2 months ago
- Code blocks Fenced, syntax-highlighted code with titles, line numbers, author highlights, reader-shareable line selection, and inline annotations. Authoring / Code Docolin 2 months ago
- Frontmatter The YAML block at the top of every doco that says what it is, who wrote it, where it belongs in docolin's taxonomy, and how it's verified and versioned. Authoring / Frontmatter Docolin 2 months ago
- Content tabs Group alternatives behind a single set of labels, with code tabs that stay in sync across the whole page. Authoring / Tabs Docolin 2 months ago
- Tables GFM tables with column alignment and rich cell content, plus the one-line trick that turns a table into a bar or line chart docolin renders for you. Authoring / Tables Docolin 2 months ago
- Your first doco Write a complete docolin doco from an empty file to a publishable page, one piece at a time. Authoring / Quickstart Docolin 2 months ago
Programming
- Generate a deck in the browser Building an .apkg client side, from loading the sql.js WASM binary to handing the file to the user, plus what ankipack 0.3.0 and earlier do to a webpack or Vite build. How To / Browser Ankipack 6 days ago
- Package, Deck and Note The build API. Every option and default on Package, Deck and Note, and every value ankipack refuses to pass through to Anki. Reference / Package Deck Note Ankipack 25 days ago
- Notetype Every option, default and validation rule for note types, fields and templates, plus the places ankipack's card generation is observable and Anki's manual is silent or out of date. Reference / Notetype Ankipack 25 days ago
- Errors Every AnkipackError code, what raises it and what to do about it. Errors carry a machine-readable code so callers branch on that rather than on message text. Reference / Errors Ankipack 25 days ago
- DeckConfig Every scheduler option ankipack can set, with its type, default and the range it enforces, mapped to the section of Anki's manual that explains what the option actually does. Reference / Deck Config Ankipack 25 days ago
- Collection and CollectionNote Every method for opening an existing .apkg, finding notes, editing them and writing the file back, including the filter asymmetry that makes a subdeck search silently match nothing. Reference / Collection Ankipack 25 days ago
- The collection document (col.data) Every table and column ankipack models, which columns hold raw protobuf and how to decode them, for anything the typed API does not cover. Reference / Collection Document Ankipack 25 days ago
- Ship an updated deck without duplicating notes A rebuilt deck ships new identities by default, so re-importing it adds duplicates instead of updating. Pin three ids, then stop changing the note type's shape. How To / Ship Updates Ankipack 25 days ago
- Attach media to a deck How to add images and audio to a package, and the filename rules that matter, because Anki refuses an entire .apkg over a single name it would have to rewrite. How To / Media Ankipack 25 days ago
- Edit an existing .apkg Open a package, find and change notes, and write it back with review history and scheduling intact, instead of rebuilding the deck and resetting everyone's progress. How To / Edit Apkg Ankipack 25 days ago
- What Anki does when it imports your deck Anki merges your package into a collection that already exists, matching notes by GUID, note types by id and decks by name. Where those keys disagree, notes are silently skipped. Explanation / Anki Import Ankipack 25 days ago
- ankipack A TypeScript library that generates, reads and edits Anki .apkg deck files, with every FSRS deck option, in Node, Bun and the browser. Overview Ankipack 25 days ago
- Your first deck Build a working Anki deck from an empty folder and import it into Anki. Covers project setup, installation under four package managers, and one complete script. Tutorial / First Deck Ankipack 26 days ago
- Why ankipack refuses input instead of repairing it ankipack throws on anything Anki would silently rewrite, drop or refuse, at the call that supplied it. The alternative is a package that imports and is quietly not what you built. Explanation / Validation Ankipack 26 days ago
- The .apkg format An .apkg is a zip holding a metadata record, a zstd-framed SQLite collection at schema 18, and a protobuf media index. ankipack writes that layout and reads the two older ones, converting as it goes. Explanation / Apkg Format Ankipack 26 days ago