mirror of
https://github.com/jvsteiner/send-note.git
synced 2026-07-22 11:20:26 +00:00
Update docs
This commit is contained in:
parent
3d4c26a7bd
commit
59cd09f368
2 changed files with 30 additions and 0 deletions
30
docs/notes/Managing your notes.md
Normal file
30
docs/notes/Managing your notes.md
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
parent: Notes
|
||||
title: Managing your notes
|
||||
category: notes
|
||||
permalink: /notes/management
|
||||
---
|
||||
# {{ page.title }}
|
||||
|
||||
At some stage I plan to add a management / admin page to the plugin where you can manage
|
||||
all your existing shared notes.
|
||||
|
||||
For now, you can achieve a fairly good management view with [Dataview](https://github.com/blacksmithgu/obsidian-dataview).
|
||||
|
||||
Create a query like this:
|
||||
|
||||
````
|
||||
```dataview
|
||||
TABLE WITHOUT ID
|
||||
link(file.path, truncate(file.name, 28)) as Note,
|
||||
dateformat(share_updated, "yyyy-MM-dd") as "Shared on",
|
||||
elink(share_link, regexreplace(share_link, "^.*?(\w+)(#.+?|)$", "$1")) as Link,
|
||||
choice(regextest("#", share_link), "🔒", "") as "🔒"
|
||||
WHERE share_link
|
||||
```
|
||||
````
|
||||
|
||||
And you should see a table like this of your shared notes. The 🔒 icon indicates that a note was shared with encryption.
|
||||
|
||||

|
||||
|
||||
BIN
docs/notes/note-management.png
Normal file
BIN
docs/notes/note-management.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 189 KiB |
Loading…
Reference in a new issue