⬅️ **[[$-Tools|Tools]]**
***
# Readwise
## Workflows
[[{-Readwise-Annotations]]
[[C-Readwise.canvas]]
[[Workflow für Notizen mit Readwise]]
[[Aufspaltung von Obsidian und Readwise]]
## Importieren
### Import physische Bücher
- **Help:** https://help.readwise.io/article/59-how-do-i-import-highlights-from-physical-or-paper-books
### Import Twitter Posts
- **Help:** https://help.readwise.io/article/61-how-do-i-save-tweets-from-twitter-to-readwise
- an Post antworten mit: `@readwise save [thread]`
### Import Kindle Documents
- **Help:** https://help.readwise.io/article/30-how-do-i-import-highlights-from-personal-documents-on-kindle
- Kindle -> Notes/Highlights -> teilen -> `
[email protected]` (Sender-E-Mail Adresse muss in den Einstellungen whitelisted sein)
### Import YouTube mit Transkript
![[Pasted image 20230605160339.png]]
### Import News direkt beim Lesen auf der Webseite mit Browser-Plugin
![[Pasted image 20230605160409.png]]
## Sync Readwise Obsidian official
- **Help:** https://help.readwise.io/article/125-how-does-the-readwise-to-obsidian-export-integration-work
- Formatierung kann angepasst werden: [Readwise - Obsidian Export Einstellungen](https://readwise.io/export/obsidian/preferences)
- Sync
- Neue Änderungen einer vorhandenen Datei werden einfach unten angefügt
- Delete and Reload completely
- Datei wird komplett neu generiert
- [jinja Builtin Filters](https://jinja.palletsprojects.com/en/2.11.x/templates/#builtin-filters)
### Export Formatierung - Liste
- **Filename**
```go
+r {{title|lower}} - {{author}}
```
- **Title**
```go
# {{ title|replace("-", " ") }} - {{author}}
```
- **Metadata**
```go
{% if image_url -%}

{% endif -%}
## Metadata
- Author:: {% if author %}{{author}}{% endif %}
- Full-Title:: {{full_title|replace("-", " ")}}
- Sub-Title::
- Date:: {{published_date}}
- Category:: #readwise/{{category}}
- Status:: #Status/TODO
- Säule:: #Säule/TODO
- Document-Note:: {{document_note}}
{% if document_tags -%}
- Document-Tags:: #Typ/ReadwiseAnnotations {% for tag in document_tags %}#Thema/{{tag}} {% endfor %}
{% endif -%}
{% if url -%}
- URL:: {{url}}
{% endif -%}
- Source:: {{source}}
{% if author=='Blinkist' -%}
- Blinkist-Link:: [{{full_title|replace("-", " ")}}](https://www.blinkist.com/de/books/{{full_title|lower}})
- Kindle-Export:: [[+k {{full_title|lower}} - Blinkist]]
- Zusammenfassung:: [[Bücher]]
{% endif -%}
- Rating::
- Summary:: {{summary}}
- Last-Sync:: {{date|date('Y-m-d')}}
```
- **Header**
```go
{% if is_new_page %}
## Highlights
{% elif has_new_highlights -%}
## New highlights added {{date|date('F j, Y')}} at {{time}}
{% endif -%}
```
- **Highlight**
```go
- {% if highlight_location and highlight_location_url %} **[{{highlight_location}}]({{highlight_location_url}}):** {% elif highlight_location %} **{{highlight_location}}:** {% endif %}{{ highlight_text }}{% if highlight_tags %}
- tags: {% for tag in highlight_tags %}#{{tag}} {% endfor %}{% endif %}{% if highlight_note %}
- Note: {{ highlight_note }}{% endif %}
```
### Export Formatierung - Tabelle
- **Header**
```go
{% if is_new_page %}
## Highlights
| Location | Tag | Highlight | Note |
| --- | --- | --- | --- |
{% elif has_new_highlights -%}
## New highlights added {{date|date('F j, Y')}} at {{time}}
| Location | Tag | Highlight | Note |
| --- | --- | --- | --- |
{% endif -%}
```
- **Highlight**
```go
| {% if highlight_location and highlight_location_url %} [{{highlight_location}}]({{highlight_location_url}}) | {% elif highlight_location %} {{highlight_location}} | {% endif %}{% if highlight_tags %} {% for tag in highlight_tags %}#{{tag}} {% endfor %} {% endif %} | {{ highlight_text|replace("\n", " ") }} | {% if highlight_note %} {{ highlight_note|replace("\n", " ") }}{% endif %} |
```
### Export Formatierung - Liste Blinkist/Kindle
- Source = `clippings_html`
- Source:: {{source}}
- Einschränkungen
- mehrere Tags an Highlight
- wird eh nicht gemacht von mir
- würde doppelte Zeilen bringen
- Notizen an einem Highlight
- wird nicht ausgegeben
- schreibe ich jedoch auch nie -> zu detailliert
- bei Twitter, Pocket gibt es keine Tags oder Notizen an einem Highlight -> immer plain Liste
- **Header**
```go
{% if is_new_page %}
## Highlights
{% elif has_new_highlights -%}
## New highlights added {{date|date('F j, Y')}} at {{time}}
{% endif -%}
```
- **Highlight**
```go
{% if highlight_tags -%}{% for tag in highlight_tags %}{% if tag=='pink' -%}### {{ highlight_text }}{% elif tag=='blau' -%}- *{{highlight_text}}*{% elif tag=='orange' -%}- **{{highlight_text}}**{% else -%}- {{highlight_text}} {% if highlight_location and highlight_location_url %} [{{highlight_location}}]({{highlight_location_url}}){% elif highlight_location %} {{highlight_location}}{% endif %}{% endif -%}{% endfor %}{% else -%}- {{highlight_text}} {% if highlight_location and highlight_location_url %} [{{highlight_location}}]({{highlight_location_url}}){% elif highlight_location %} {{highlight_location}}{% endif %}{% endif %}
{% if highlight_tags -%}
{% for tag in highlight_tags %}
{% if tag=='pink' -%}### {{ highlight_text }}
{% elif tag=='blau' -%}- *{{highlight_text}}*
{% elif tag=='orange' -%}- **{{highlight_text}}**
{% else -%}
- {{highlight_text}} {% if highlight_location and highlight_location_url %} [{{highlight_location}}]({{highlight_location_url}}){% elif highlight_location %} {{highlight_location}}{% endif %}
{% endif -%}
{% endfor %}
{% else -%}- {{highlight_text}} {% if highlight_location and highlight_location_url %} [{{highlight_location}}]({{highlight_location_url}}){% elif highlight_location %} {{highlight_location}}{% endif %}{% endif %}
```
#
***
Related:
- [[$-Ordnung|Ordnung]]