diff --git a/Attribute inheritance.md b/Attribute inheritance.md index 8bc8f41..77bca71 100644 --- a/Attribute inheritance.md +++ b/Attribute inheritance.md @@ -1,4 +1,6 @@ -Every [[attribute|attributes]] has a flag called `isInheritable`. If this is true, then this attribute (key-value) is also applied to all its children notes, children's children notes etc. +Every [[attribute|attributes]] has a flag called `isInheritable`. If this is true, then this attribute (key-value) is also applied to all its children notes, children's children notes etc. + +Example how this might be useful is `archived` label which hides its note from Jump to / Add link dialogs. Often times you want to archive some specific subtree, you can do this by making the `archived` label inheritable. ## Copying inheritance diff --git a/Attributes.md b/Attributes.md index 70ac1a7..abc7ca0 100644 --- a/Attributes.md +++ b/Attributes.md @@ -15,9 +15,9 @@ Labels are used for several things: * user can use them as labels with optional value - e.g. when catalogizing books, you might add labels like @year=1999, @genre=sci-fi, @author=Neal Stephenson * attributes can be used to configure some advanced features / settings - see below -* plugins / scripts can use these to mark notes with some special values / metadata (e.g. note with imported reddit comment will have label with comment ID) +* plugins / scripts can use these to mark notes with some special values / metadata (e.g. [[Weight Tracker]] will have "weight" attribute on [[day notes]] based on whose it can create chart). -Labels can be used when [[searching|Search]]. +Labels can be used for [[searching|Search]]. ### Standard labels diff --git a/Note revisions.md b/Note revisions.md index 3fa764a..81b02fe 100644 --- a/Note revisions.md +++ b/Note revisions.md @@ -6,4 +6,6 @@ To turn off note versioning for particular note (or subtree), add `disableVersio Note revisions can be accessed through note detail menu. -[[images/note-revisions.png]] \ No newline at end of file +[[images/note-revisions.png]] + +Above you can see list of 3 note revisions for given note. \ No newline at end of file diff --git a/Screenshot tour.md b/Screenshot tour.md index 1187d9d..bc74f2b 100644 --- a/Screenshot tour.md +++ b/Screenshot tour.md @@ -26,4 +26,8 @@ See [[Family tree]]. [[images/task-manager.png]] -See [[Task manager]]. \ No newline at end of file +See [[Task manager]]. + +[[images/note-revisions.png]] + +See [[Note revisions]]. \ No newline at end of file diff --git a/Search.md b/Search.md index bb38332..5f828d3 100644 --- a/Search.md +++ b/Search.md @@ -20,3 +20,10 @@ Following examples demonstrates syntax: * ```@abc<=5``` - numerical comparison (also >, >=, <). * ```some search string @abc @def``` - combination of fulltext and label search - both of them need to match (OR not supported) * ```@abc @def some search string``` - same combination + + +## Saved search + +Trilium provides a way to save common search as a note in the note tree. Search results will then appear as subnotes of this "saved search" note. You can see how this works in action: + +[[gifs/saved-search.gif]] \ No newline at end of file diff --git a/gifs/save-search.gif b/gifs/save-search.gif new file mode 100644 index 0000000..da220d3 Binary files /dev/null and b/gifs/save-search.gif differ