diff options
Diffstat (limited to '')
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/_category_.json | 4 | ||||
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/advanced-workflows.md | 23 | ||||
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/bookmarking.md | 42 | ||||
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/import.md (renamed from docs/docs/10-import.md) | 9 | ||||
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/lists.md | 18 | ||||
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/quick-sharing.md (renamed from docs/versioned_docs/version-v0.26.0/05-quick-sharing.md) | 7 | ||||
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/search-query-language.md (renamed from docs/docs/14-guides/02-search-query-language.md) | 5 | ||||
| -rw-r--r-- | docs/versioned_docs/version-v0.30.0/04-using-karakeep/tags.md | 11 |
8 files changed, 116 insertions, 3 deletions
diff --git a/docs/versioned_docs/version-v0.30.0/04-using-karakeep/_category_.json b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/_category_.json new file mode 100644 index 00000000..b0784ea6 --- /dev/null +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/_category_.json @@ -0,0 +1,4 @@ +{ + "label": "Using Karakeep", + "position": 2 +} diff --git a/docs/versioned_docs/version-v0.30.0/04-using-karakeep/advanced-workflows.md b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/advanced-workflows.md new file mode 100644 index 00000000..5efd889a --- /dev/null +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/advanced-workflows.md @@ -0,0 +1,23 @@ +--- +sidebar_position: 10 +slug: advanced-workflows +--- + +# Advanced workflows + +Push Karakeep further with automation and integrations. + +## Rule engine + +- Create if-this-then-that style rules to auto-tag, favourite, or route bookmarks into lists based on metadata or content. +- Useful for keeping inboxes tidy (e.g. auto-archive newsletters, auto-tag domains, or flag videos). + +## API + +- Use the API to script imports, syncs, or custom tools. Same surface area the apps use. +- Great for integrating with personal scripts, cron jobs, or other services. + +## Webhooks + +- Subscribe to bookmark events and trigger your own systems when something is added, updated, or archived. +- Pair with the API to build end-to-end automations (e.g. push new saves into a writing queue or a team chat). diff --git a/docs/versioned_docs/version-v0.30.0/04-using-karakeep/bookmarking.md b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/bookmarking.md new file mode 100644 index 00000000..0e2f350f --- /dev/null +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/bookmarking.md @@ -0,0 +1,42 @@ +--- +sidebar_position: 1 +slug: bookmarking +--- + +# Bookmarking + +Everything in Karakeep starts as a bookmark. Here’s how the different types work and how to keep your home view tidy with favourites and archive. + +## Favourites + +- Star bookmarks you like so they sit in their own dedicated favourites view for quick return visits. +- Handy for saved gems you want to re-open often like articles you enjoyed, references you come back to, or things worth sharing. + +## Archiving + +- Archive hides a bookmark from the homepage without deleting it. +- Archived items stay searchable and keep all tags, highlights, and attachments. +- Ideal for achieving inbox-zero style for your homepage. + +## Bookmark types + +- **Links**: URLs saved from the web or extension. Karakeep grabs metadata, previews, screenshots, and archives when configured. +- **Text**: Quick notes or snippets you paste in. Great for ideas, quotes, or saving context alongside links. +- **Media**: Images or PDFs you want to save for later. Karakeep automatically extracts content out of those files and makes them searchable. + +## Notes + +- Attach personal notes to any bookmark to capture context, reminders, or next steps. +- Notes live with the bookmark and are searchable, so you can recall why something mattered. + +## Highlights + +- Save quotes, summaries, or TODOs while reading. +- Highlights show up in the bookmark detail view/reader and are searchable, so you can jump straight to the key ideas. + +## Attachments + +- Store extra context alongside a bookmark: screenshots, page captures, videos, and files you upload. +- **Screenshots & archives**: fallback when the original page changes or disappear. +- **Uploaded files**: keep PDFs, notes, or supporting assets right with the link. +- Manage attachments from the bookmark detail view: upload, download, or detach as needed. diff --git a/docs/docs/10-import.md b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/import.md index 8ca8b1f9..3bf07cae 100644 --- a/docs/docs/10-import.md +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/import.md @@ -1,4 +1,9 @@ -# Importing Bookmarks +--- +sidebar_position: 8 +slug: import +--- + +# Import your library Karakeep supports importing bookmarks using the Netscape HTML Format, Pocket's new CSV format & Omnivore's JSONs. Titles, tags and addition date will be preserved during the import. An automatically created list will contain all the imported bookmarks. @@ -40,7 +45,7 @@ All the URLs in the bookmarks file will be added automatically, you will not be Importing bookmarks using the CLI requires some technical knowledge and might not be very straightforward for non-technical users. Don't hesitate to ask questions in github discussions or discord though. ::: -If you can get your bookmarks in a text file with one link per line, you can use the following command to import them using the [karakeep cli](https://docs.karakeep.app/command-line): +If you can get your bookmarks in a text file with one link per line, you can use the following command to import them using the [karakeep cli](../05-integrations/02-command-line.md): ``` while IFS= read -r url; do diff --git a/docs/versioned_docs/version-v0.30.0/04-using-karakeep/lists.md b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/lists.md new file mode 100644 index 00000000..9882ec59 --- /dev/null +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/lists.md @@ -0,0 +1,18 @@ +--- +sidebar_position: 2 +--- + +# Lists + +Lists are the core organizational layer in Karakeep. Every saved item can sit in multiple lists so you can group links by project, topic, or audience without duplicating them. + +## Manual lists + +- Curated sets you add bookmarks to by hand. Great for projects, reading queues, or hand-picked collections. +- Can be **private** (visible only to you) or **public** (share a read-only link). +- Can be **collaborative**: invite people by email as viewers or editors. Editors can add their own bookmarks; viewers can browse. Your personal states (favourite/archive) stay yours even inside a shared list. + +## Smart lists + +- Auto-updating lists powered by a saved search query (e.g. `#ai -archived`). +- Best for dynamic views like `Youtube links added last week` or `All reddit links from r/selfhosted`. diff --git a/docs/versioned_docs/version-v0.26.0/05-quick-sharing.md b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/quick-sharing.md index 254bec84..e1f031a5 100644 --- a/docs/versioned_docs/version-v0.26.0/05-quick-sharing.md +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/quick-sharing.md @@ -1,4 +1,9 @@ -# Quick Sharing Extensions +--- +sidebar_position: 7 +slug: quick-sharing +--- + +# Quick capture and sharing The whole point of Karakeep is making it easy to hoard the content. That's why there are a couple of diff --git a/docs/docs/14-guides/02-search-query-language.md b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/search-query-language.md index 8f55ec2f..a1e830e8 100644 --- a/docs/docs/14-guides/02-search-query-language.md +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/search-query-language.md @@ -1,3 +1,8 @@ +--- +sidebar_position: 9 +slug: search-query-language +--- + # Search Query Language Karakeep provides a search query language to filter and find bookmarks. Here are all the supported qualifiers and how to use them: diff --git a/docs/versioned_docs/version-v0.30.0/04-using-karakeep/tags.md b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/tags.md new file mode 100644 index 00000000..0ac93bfd --- /dev/null +++ b/docs/versioned_docs/version-v0.30.0/04-using-karakeep/tags.md @@ -0,0 +1,11 @@ +--- +sidebar_position: 3 +--- + +# Tags + +Tags are lightweight labels you can attach to any bookmark to add meaning without rigid folders. + +- Use tags to capture topics, sources, people, or workflow states (e.g. `ai`, `design`, `to-read`). +- Combine multiple tags to filter or build smart lists; tags travel with a bookmark wherever it appears. +- AI tags might look a little messy, but the extra labels make finding things easier. Use tags for broad discovery and lists when you want a clean, hand-picked setup. |
