# Readwise SOP --- ## Obsidian export - Group Files in Category Folders *(toggled on)* - Books → *Book* - Articles → *Article* - Tweets → *Tweet* - Podcasts → *Podcast* - Use Custom File Name *(toggled on)* ### File name - `/, \, :, *, ", |, ?, >, <` will already be stripped - Have added `:` to be replaced with `-` ``` {{author}} - {{category}} - {{title|replace(':','-')}} ``` ### Page title ``` # {{ title }} ``` ### Page metadata ``` ## Metadata title: {{full_title}} {% if author %}author:: {{author}}{% endif %} Type: {{category}} {% if document_tags -%} keywords:: {% for tag in document_tags %}[[{{tag}}]], {% endfor %} {% endif -%} {% if url -%}url:: {{url}}{% endif -%} ``` ### Highlights header ``` {% if is_new_page %} ## Highlights {% elif has_new_highlights -%} ## New highlights added {{date|date('Y-m-d')}} {% endif -%} ``` ### Highlight ``` #### {{highlight_location}} > {{ highlight_text }}{% if highlight_location and highlight_location_url %} ([{{highlight_location}}]({{highlight_location_url}})){% elif highlight_location %} ({{highlight_location}}){% endif %}{% if highlight_note %} {{ highlight_note }}{% endif %} ``` ### YAML front matter ``` title: ["{{ title }}"] aliases: created: {{date|date('Y-m-d')}} {{time}} imported: [[{{date|date('Y-m-d')}}]] publish: false type: {{category}} {% if category == "books"%}{% if image_url -%}image: {{image_url}} {% endif -%}{% endif -%} status: tags: reference cssclasses: ``` ### Sync notification I currently have this disabled. --- ## Keyboard Shortcuts | | Description | |:---------:| ------------------------------- | | Command-K | Open command palette | | T | Add / Edit tags for document | | F | Add to favourites | | B | Bump document to top | | Shift-C | Copy URL | | D | Delete document | | Option-1 | Go to **Feed** | | Option-2 | Go to **Inbox** | | Tab | Go to next list | | Shift-Tab | Go to previous list | | Space bar | Mark document as seen or unseen | | E | Move to **Archive** | | Shift-E | Move to **Inbox** | | L | Move to **Later** | | Y | Redo | | / | Search | | Shift-M | Show / hide detailed metadata | | Z | Undo | | O | View on web |