Readwise Mirror is an unoffical open source plugin for the powerful note-taking and knowledge-base application Obsidian. This plugin allows a user to "mirror" their entire Readwise library by automatically downloading all highlights/notes and syncing changes directly into an Obsidian vault.
The format of the output is similar to the Markdown export available directly from Readwise (which groups all highlights together in one file per book/article/etc), except that it is integrated directly into Obsidian and provides beneficial Obsidian formatting enhancements, such as automatically creating [[Links]]
for Book Titles and Author Names (supports multiple authors) and block level link references (using highlight ID).
The first time this plugin is ran, it will do a full sync downloading all content from Readwise. Every subsequent sync will only check for sources with new changes made after the last sync attempt; if any are found, it will automatically regenerate the note with the most current data.
- Supports custom folder for Readwise Library content (default is
Readwise
) - Subfolders for content type (such as
Books
,Articles
, etc) - Full one-way sync ensuring highlights are always current
- Downloads entire Readwise library in a format similar to Readwise manual Markdown export
- Enhanced Obsidian Markdown formatting
- Automatically creates
[[Links]]
for book titles and authors - Contains block level link references (using the Highlight ID). Allows to automatically link/transclude any highlight without needing to modify the Readwise note.
- Automatically creates
- Supports tags, both within highlights as well as sources (books, articles, etc)
- Supports Readwise Reader fields, notably the summary and document note
After installing, visit the plugin configuration page to enter the Readwise Access Token, which can be found here: https://readwise.io/access_token
Then run any of the below commands or click the Readwise toolbar to sync for the first time.
Sync new highlights
: Download all new highlights since previous updateTest Readwise API key
: Ensure the Access Token worksDelete Readwise library
: Remove the Readwise library file folder from vaultDownload entire Readwise library (force)
: Forces a full download of all content from Readwise
Any changes made to content in Readwise will be automatically updated during the next sync. It's important to note that this is a read only/one way sync, meaning that any new highlights detected from Readwise will cause the note file to automatically regenerate with the new content. This was a deliberate design decision to ensure that Readwise is the ultimate source of truth for data; any changes to currently existing highlights in Readwise are always reflected rather than getting out of sync. While another possible solution is to append new highlights to existing content notes instead, it is not feasible to modify existing highlights; this is how Readwise's integration with other services such as Notion & Roam work:
If I edit or format an existing highlight in Readwise, or make a new note or tag to an existing highlight, will that change be updated in Notion? Not at the moment. Any edits, formatting, notes, or tags you had in Readwise before your first sync with Notion will appear in Notion, but new updates to existing highlights will not be reflected in already synced highlights.
In addition to this plugin, there is also another Readwise community plugin for Obsidian named obsidian-readwise, which can be found at: https://github.com/renehernandez/obsidian-readwise. Both plugins exist for different use cases, so please read below to determine which best suits your needs.
Because of the way the mirror sync works in this plugin, users lose the ability to modify their notes as the plugin is responsible for managing all note files in the Readwise library. If a user needs full control over their library or the ability to modify notes and highlights directly in Obsidian, obsidian-readwise would be the better choice.
- Download obsidian-readwise to import new highlights to your library with full control over the ability to modify and format your notes
- Download this plugin if you want to mirror your entire Readwise Library into Obsidian and sync modifications to previous highlights
If the update is so large that a Readwise API limit is reached, this plugin has a rate limiting throttling solution in place to continue automatically continue downloading the entire library as soon as the limit expires.
As a reference for performance, syncing my library of 5,067 Highlights across 92 books and 9 articles took approximately 20 seconds.
- Browse to releases
- Download
main.js
andmanifest.json
of the latest release - Create a
readwise-mirror
subdirectory in your Obsidian plug-in directory (in.obsidian/plugins
in your vault) - Move the two downloaded files there
- In Obsidian, go to Settings, scroll down to Community Plug-ins, and activate it.
- If it refuses to activate with an error message, open the developer console (with Ctrl-Shift-I) and check for error messages.
A lot of the value of Readwise highlights lies in the notes associated with them. E.g. if you are building a Zettelkasten and want to work with literature notes, you typically only want highlights with notes in your Zettelkasten -- and not every highlight.
The option "Only sync highlights with notes" will do exactly that: it will only sync highlights with notes. If an item in your library has only highlights without notes, it will not be synced.
The plugin uses three template types to format content, all using Nunjucks templating syntax:
- Header Template: Controls document structure and metadata display
- Highlight Template: Controls individual highlight formatting
- Frontmatter Template: Controls YAML metadata (optional)
Variable | Description | Example |
---|---|---|
id |
Document ID | 12345 |
title |
Original title | "My Book" |
sanitized_title |
Filesystem-safe title | "My-Book" |
author |
Author name(s) | "John Smith" |
authorStr |
Author with wiki links | "[[John Smith]]" |
category |
Content type | "books" |
Variable | Description | Example |
---|---|---|
document_note |
Reader document note | "My reading notes..." |
summary |
Reader summary | "Book summary..." |
num_highlights |
Number of highlights | 42 |
cover_image_url |
Cover image URL | "https://..." |
Variable | Description | Example |
---|---|---|
highlights_url |
Readwise URL | "https://readwise.io/..." |
source_url |
Original content URL | "https://..." |
unique_url |
Reader URL (if available) | "https://reader.readwise.io/..." |
Variable | Description | Example |
---|---|---|
tags |
Document tags with # | "#tag1, #tag2" |
tags_nohash |
Tags for frontmatter | "'tag1', 'tag2'" |
highlight_tags |
Highlight tags with # | "#note, #important" |
hl_tags_nohash |
Highlight tags for frontmatter | "'note', 'important'" |
Variable | Description |
---|---|
created |
Creation date |
updated |
Last update |
last_highlight_at |
Last highlight date |
bq
: Add blockquote markersis_qa
: Check for Q&A formatqa
: Convert to Q&A format
---
id: {{ id }}
updated: {{ updated }}
title: {{ title }}
author: {{ author }}
---
The following would print both document and all highlight tags, rolled-up:
---
id: {{ id }}
updated: {{ updated }}
title: "{{ title }}"
alias: "{{ sanitized_title }}"
author: "{{ author }}"
highlights: {{ num_highlights }}
last_highlight_at: {{ last_highlight_at }}
source: {{ source_url }}
tags: [ {%- if tags_nohash %}{{ tags_nohash }},{%- endif %}{%- if hl_tags_nohash %} {{ hl_tags_nohash }}{%- endif %} ]
---
%%
ID: {{ id }}
Updated: {{ updated }}
%%
![]( {{ cover_image_url }})
# About
Title: [[{{ title }}]]
Authors: {{ authorStr }}
Category: #{{ category }}
{%- if tags %}
Tags: {{ tags }}
{%- endif %}
Number of Highlights: =={{ num_highlights }}==
Readwise URL: {{ highlights_url }}
{%- if source_url %}
Source URL: {{ source_url }}
{%- endif %}
Date: [[{{ updated }}]]
Last Highlighted: *{{ last_highlight_at }}*
{%- if summary %}
Summary: {{ summary }}
{%- endif %}
---
{%- if document_note %}
# Document Note
{{ document_note }}
{%- endif %}
# Highlights
Variable | Description | Example |
---|---|---|
text |
Highlighted text | "This is the highlight" |
note |
Your annotation | "My thoughts on this..." |
color |
Highlight color | "yellow" |
Variable | Description | Example |
---|---|---|
location |
Position reference | "Page 42" |
location_url |
Direct link to location | "https://readwise.io/to_kindle?..." |
url |
Source URL | "https://readwise.io/open/..." |
Variable | Description | Example |
---|---|---|
id |
Highlight ID | "abc123" |
category |
Content type | "books" |
tags |
Associated tags | "#important, #todo" |
highlighted_at |
Creation date | "2024-01-20" |
created_at |
Creation timestamp | "2024-01-20T10:00:00Z" |
updated_at |
Last update timestamp | "2024-01-21T15:30:00Z" |
Filter | Description | Example |
---|---|---|
bq |
Add blockquote markers | {{ text | bq }} |
is_qa |
Check for Q&A format | {% if note | is_qa %} |
qa |
Convert to Q&A format | {{ note | qa }} |
{{ text }}{%- if category == 'books' %} ([{{ location }}]({{ location_url }})){%- endif %}{%- if color %} %% Color: {{ color }} %%{%- endif %} ^{{id}}{%- if note %}
Note: {{ note }}
{%- endif %}{%- if tags %}
Tags: {{ tags }}
{%- endif %}
---
If you want to use blockquotes for text fields in your template, there's a handy bq
filter that will put the quote character (>
) in front of every new line. This is useful for both multi-line highlights as well as multi-line notes.
With this filter, templates like the following become possible, without breaking the blockquote.
> [!quote]
> {{ text | bq }}{%- if category == 'books' %} ([{{ location }}]({{ location_url }})){%- endif %}{%- if color %} %% Color: {{ color }} %%{%- endif %} ^{{id}}{%- if note %}
Note: {{ note }}
{%- endif %}{%- if tags %}
Tags: {{ tags }}
{%- endif %}
---
If you want to render notes with the .qa
action tag properly, the plugin makes several nunjucks filters available for that:
is_qa
: this filter returnstrue
if the string it is applied to contains the.qa
action tagqa
: this filter extracts the question and answer and returns them as a rendered string
Using both filters, you could for example format Q&A notes differently from regular notes.
{# Example template using both filters #}
{% if note | is_qa %}
{{ note | qa }}
**Original Highlight:**
{{ text | replace('__', '==') }}
***
{% else %}
> [!quote]
> {{ text | bq | replace('__', '==') }}
{{ note }}
{% endif %}
- The templating is based on the
nunjucks
templating library and thus shares its limitations; - Certain strings (e.g. date, tags, authors) are currently preformatted
- If you have frontmatter and items with
@
in the title or author's name (typically this happens with highlights imported from Twitter), the frontmatter will be invalid. You can add quotes in your frontmatter template to try to work around these cases: `title: "{{ title }}" but any quotes already present in the title will break your frontmatter too.