kidpeterpan860 downloadsExport notes, book folders, or linked notes as EPUB for e-ink readers, with optional wireless delivery to Onyx Boox.
██╗███╗ ██╗██╗ ██╗██████╗ ██████╗ ██╗ ██╗███╗ ██╗██████╗
██║████╗ ██║██║ ██╔╝██╔══██╗██╔═══██╗██║ ██║████╗ ██║██╔══██╗
██║██╔██╗ ██║█████╔╝ ██████╔╝██║ ██║██║ ██║██╔██╗ ██║██║ ██║
██║██║╚██╗██║██╔═██╗ ██╔══██╗██║ ██║██║ ██║██║╚██╗██║██║ ██║
██║██║ ╚████║██║ ██╗██████╔╝╚██████╔╝╚██████╔╝██║ ╚████║██████╔╝
╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝╚═════╝
Inkbound exports your Obsidian notes as EPUB ebooks, so you can read them comfortably on an e-ink device instead of a laptop screen.
Export from the command palette or a right-click menu, in three ways:
Every export produces a real, valid EPUB 3 file. Images in your notes come through, and so do Mermaid diagrams — as pictures rather than live diagrams, since most e-ink readers cannot draw them otherwise. Any language works, including Thai.
Books get covers. Set cover: in a note's frontmatter (a vault path, a
[[wikilink]], or a URL) and the finished book carries that artwork: it shows
on your e-reader's library shelf, and the book opens on a full-page cover
before the first chapter. No cover:? The first image of the note becomes
the cover automatically.
The table of contents navigates to the section. Every chapter's headings appear as sub-entries in the book's TOC, so on an e-ink reader you can jump straight to a section instead of scrolling a long chapter. The setting TOC heading depth (default level 3) controls how deep the sub-entries go; set it to Off for the plain chapter-only TOC.
Math typesets as pictures. Inline $...$ and display $$...$$ LaTeX in
your notes renders at export time (MathJax) and embeds as plain images — the
same strategy as Mermaid — so it displays identically on every reader,
including e-ink devices that cannot draw inline SVG. Display math sits
centered on its own line; inline math rides the text baseline. Expressions
that cannot render (broken LaTeX, or non-Latin text such as Thai inside the
delimiters) degrade to a readable fallback with an export warning instead of
failing the book — write prose outside the delimiters for Thai text.
Thai books carry their own font. Any book whose chapters contain Thai gets Noto Sans Thai (Regular + Bold, SIL OFL 1.1) embedded automatically, so Thai renders consistently on e-ink readers even when the device has no Thai font of its own — correct compound vowels included. The license text ships inside the book; Latin text keeps the reader's normal reading font. Books without Thai stay fontless and byte-stable, and the Embed Thai font setting turns the whole behavior off if you ever want it.
A book's index note in Obsidian, with its chapters as linked notes:

Right-click it and export the note plus everything it links to:

With Push after export turned on, the finished book lands straight in the Boox library over Wi-Fi and reads like any other EPUB — Thai text, tables and all:
| On the shelf | Open on the device |
|---|---|
![]() |
![]() |
From Obsidian's Community plugins browser — the easiest way, and the one that keeps Inkbound updated for you:
That works on desktop and on mobile alike.
From a GitHub release, if you would rather install manually:
main.js and manifest.json from the
latest release.<vault>/.obsidian/plugins/inkbound/ (create the folder if it doesn't
exist).[!WARNING] If Obsidian was already running when the plugin folder was added, the new plugin will not appear in the Community plugins list until you click the refresh icon at the top of that list (or restart Obsidian).
Three commands, available from the command palette and from a right-click context menu:
The finished .epub is written to the folder set in Settings → Inkbound →
Output folder (~/Downloads by default), and a notice in Obsidian confirms
the path once the export finishes. If Push after export is turned on,
the same notice reports whether the send to your Boox device succeeded.
When something in your notes could not be carried into the book, the export still finishes — that is deliberate — and the notice says how many things degraded. Tap it to open the export report, which lists every one of them grouped under the note it came from, so you know exactly which note to go fix:
The notice disappears after a few seconds. Show last export report in the command palette brings the same report back for the most recent export, for as long as Obsidian stays open. A Copy report button in the report copies it as plain text, which is what to paste into a bug report. A clean export shows its usual notice with nothing extra, and the report simply says there were no warnings.
Found under Settings → Community plugins → Inkbound:

| Setting | Default | Purpose |
|---|---|---|
| Output folder | "" (empty → ~/Downloads) |
Absolute path or ~/… folder the EPUB is written to. Existing files of the same name are overwritten. |
| Output folder (mobile) | "Exports" |
Vault-relative folder books are saved into on a phone or tablet, since mobile has no filesystem-folder-anywhere (see "On a phone or tablet"). Desktop never reads or writes it. |
| Default link depth | 1 |
How many hops of wikilinks Export note + linked notes follows outward from the active note (1–3, via a slider). |
| Backlink listing position | start (Start of chapter) |
Where each chapter shows its "Linked from:" list of the chapters in the same book that link to it — at the start of the chapter, the end, both, or none (disables the list entirely). Chapters nothing links to show no list. |
| TOC heading depth | 3 (Level 3) |
Deepest heading level listed under each chapter in the book's table of contents (0–6, via a dropdown). Off restores the flat chapter-only TOC. |
| Embed Thai font | true |
When ON, books whose chapters contain Thai text get Noto Sans Thai embedded (Regular + Bold, with its OFL license file inside the book). OFF keeps every book fontless. |
Language (dc:language) |
"th" |
Fallback language used when a note has no usable language frontmatter field. |
| Fallback author | "" (empty → "Unknown") |
Used as dc:creator when a note/index has no usable author frontmatter field. |
| Device URL | "" |
The BooxDrop device's address as shown in the BooxDrop app, e.g. http://192.168.1.42:8085. Required for pushing. |
| Push after export | false |
When enabled (and a Device URL is set), every export is uploaded to the device after being saved locally. Below this toggle is a Test connection button to verify the Device URL. |
Say you keep book notes like this, one folder per book, one note per chapter:
Reading/
└── grokking-algorithms/
├── grokking-algorithms.md <- the index note
├── 01_introduction.md
├── 02_selection_sort.md
├── 03_recursion.md
├── 10_where_to_go_next.md
└── assets/
└── fig02-1_arrays.png
Give the index note this frontmatter:
---
aliases:
- Grokking Algorithms
author: Aditya Y. Bhargava
language: english
cover: assets/grokking-cover.png
coverUrl: https://example.com/grokking-cover.jpg
tags:
- book
- main
---
Then right-click the grokking-algorithms folder and choose Export folder
to EPUB. You get a single Grokking Algorithms.epub containing:
[[03_recursion]] before [[01_introduction]] and the book
follows. Only regular links count (an embed ![[…]] does not), the first
link to a note wins, and links to notes outside the folder are ignored.NN_ prefixes first (10 after 03, because the
prefix is read as a number), then the rest by name. So the prefixes still
work — they are just no longer the only way to order a book.aliases rather than
the filename, with Aditya Y. Bhargava as the author.coverUrl and embedded, so it shows on your
reader's shelf.assets/ embedded in the chapter that references it,
whether you wrote it as ![[fig02-1_arrays.png]] or
.dc:language set to en, from language: english.The index note is found by its book + main tags. If you would rather not
tag it, name it after the folder instead — grokking-algorithms.md inside
grokking-algorithms/ is detected the same way. Without either, the folder
name becomes the title and every note is treated as a chapter.
A longer book can be split into subfolders, and each subfolder that contains notes becomes a Part in the table of contents:
Reading/
└── clean-architecture/
├── clean-architecture.md <- the index note
├── 00_preface.md
├── Part I – Introduction/
│ ├── Part I – Introduction.md <- optional sub-index (same detection rules)
│ ├── 01_what_is_design.md
│ └── 02_a_tale_of_two_values.md
├── Part II – Programming Paradigms/
│ └── 03_paradigm_overview.md
└── assets/ <- no notes → no Part
book + main, or named after
the folder) uses that note's title as the Part title, puts it first, and
orders the Part's chapters by its links. Without one, the folder name is the
Part title and its notes follow the numeric-then-name order.Part II/ before [[00_preface]] puts Part II before the preface. Parts it
never mentions follow, ordered by folder name alongside unlinked notes.assets/ folder) produce nothing.Note that this is a change from earlier versions, which ignored subfolders
entirely: a drafts/ folder inside a book folder now shows up as a Part. Move
such folders out of the book folder if you don't want them in the book.
Chapter titles come from each note's first # heading when there is one, so
03_recursion with an # Recursion heading appears in the table of contents
as Recursion. No heading? The note's frontmatter aliases are used next,
then the filename as a last resort. One consequence: in a folder export, the
index note's own heading (often the book title itself) becomes the first TOC
entry — that is expected, not a bug.
The table of contents also lists each chapter's own headings underneath it —
the ## and ### sections inside a long chapter — as links that jump
straight to that section when tapped. Use the TOC heading depth setting
to include deeper levels, or turn it off for the plain chapter list.
Every export scope resolves its book metadata from the exporting note's own frontmatter (the active note for single/linked exports, the detected index note for folder exports). Recognised fields:
aliases — sets the book title (dc:title). The first non-empty
string, or first non-empty string in the list if aliases is a list, is
used; otherwise the note's filename is used. This is the book title
only — chapter titles come from each note's first # heading, falling back
to aliases and then the filename.
author — sets dc:creator. A string is used as-is; a list of
strings is joined with ", "; anything else falls back to the
Fallback author setting, or "Unknown".
language — sets dc:language. A BCP-47 tag (e.g. en, en-GB,
th) is used as-is (lowercased). Otherwise, one of these names is
matched, case-insensitively:
| Frontmatter value | dc:language |
|---|---|
thai |
th |
english |
en |
japanese |
ja |
chinese |
zh |
korean |
ko |
Anything else falls back to the Language setting.
coverUrl — the book's cover image, as a full http:// or https://
URL. A cover that fails to download degrades the export to coverless
rather than failing it.
tags: [book, main] — for folder exports, marks which note in the
folder is the index/metadata source. If no note is tagged this way,
Inkbound looks for a note whose filename matches the folder name.
Pushing to an Onyx Boox e-ink device is entirely optional. Turn on Push after export and set your device's Device URL (shown in the BooxDrop app on the device — both need to be on the same Wi-Fi network) and every export is uploaded straight to the device's library after it saves. The local file is always written first, so a failed push never loses your export — it just stays in your output folder.
Inkbound works on Obsidian mobile too, with the same three exports. The one
real difference is where the book goes. A phone has no folder-anywhere
filesystem the way a laptop does, so mobile saves books inside your vault,
in the folder set by Settings → Inkbound → Output folder (mobile)
(Exports by default). From there you can open the book in a reading app,
or reach it through your device's own file access.
That gives you two independent settings — one for desktop, one for mobile — and each device only ever reads and writes its own. If you sync your vault, changing the mobile folder on your phone will never move where your desktop saves books, and vice versa.
Because books are saved into the vault, they sync like any other vault file. If you would rather they didn't, point the mobile output folder at a folder your sync excludes.
The export report matters most here. Warnings used to go only to a developer console, which a phone does not have — so on mobile there was no way to learn that a book had come out incomplete. Tapping the completion notice now opens the same report you get on desktop, and Show last export report reopens it afterwards.
To send a finished book somewhere else, run Share last exported book from the command palette. It appears only on devices that support sharing — if you don't see it, the book is still saved exactly where the notice said it is.
Push to a Boox works from mobile too, over the same Wi-Fi, so you can go from note to e-reader without a computer anywhere in the loop.
![[Connections.base]]) cannot become book content — Bases are live,
interactive views of note properties, and an EPUB page has no static
equivalent. The chapter shows [Bases view omitted: …] where the embed
was, the export logs a warning naming the file, and the export itself
succeeds.$...$) cannot be rendered — it stays
as readable source text with a warning.![[Note^block]]) now work for every kind of block Obsidian lets you
label — paragraphs, headings, tables, code blocks, callouts and
blockquotes, whole lists, and single list items (which bring their
sub-items with them). A table row, though, is not something Obsidian can
address: a ^id typed inside a cell is just cell text, so an embed
pointing at it degrades to a placeholder plus an export warning, same as
any block ID that doesn't exist.Building from source, running the test suite, and the architecture notes
live in docs/DEVELOPMENT.md.
Inkbound is free and MIT-licensed. If it saves you time, you can buy me a coffee — entirely optional, and it never affects the plugin's features.
MIT © 2026 kidpeterpan