joplin-plugin-tag-navigator 2.5.7 → 2.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -337,7 +337,11 @@ This example searches for paragraphs that have both `#artist` AND `#album` tags,
|
|
|
337
337
|
- To gain more control over filtering by notebook, you may enable the setting `Search: Extract the full notebook path`.
|
|
338
338
|
- Example: Limit results to a notebook that appears in the top level by searching for `|/topNotebook`.
|
|
339
339
|
- Example: Search for `topNotebook/childNotebook` to show only results from childNotebook.
|
|
340
|
-
- You may
|
|
340
|
+
- You may exclude entire notebooks (and their sub-notebooks) from the tag database by right-clicking on a notebook and selecting "Exclude notebook" or "Include notebook", or by manually editing the setting `Database: Exclude notebooks`.
|
|
341
|
+
- Use the `!` prefix to exclude terms from filter results.
|
|
342
|
+
- Example: `project !archive` includes results containing "project" but excludes those containing "archive".
|
|
343
|
+
- Example: `"!references/"` excludes notebooks containing "references" in their path.
|
|
344
|
+
- You may also enable `Search: Use regex for tag / note / content filtering` to filter using regular expressions.
|
|
341
345
|
|
|
342
346
|
### Inline TODOs
|
|
343
347
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.8",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
Binary file
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"desktop",
|
|
7
7
|
"mobile"
|
|
8
8
|
],
|
|
9
|
-
"version": "2.5.
|
|
9
|
+
"version": "2.5.8",
|
|
10
10
|
"name": "Inline Tag Navigator",
|
|
11
11
|
"description": "Type inline tags or frontmatter in the note editor. View your tagged paragraphs and tasks / TODOs in a search panel, or in a generated note / kanban. Build a table view / database from notes and tags. Convert between Obsidian tags and Joplin tags.",
|
|
12
12
|
"author": "Alon Diament",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
],
|
|
25
25
|
"screenshots": [],
|
|
26
26
|
"icons": {},
|
|
27
|
-
"_publish_hash": "sha256:
|
|
28
|
-
"_publish_commit": "main:
|
|
27
|
+
"_publish_hash": "sha256:884127deba1435888c3a0ebd137f16d3e52d47cac2bf25cb1a25ebb02a11e0ef",
|
|
28
|
+
"_publish_commit": "main:6416e7ba3d40031dac10d7bdbce91257121df194"
|
|
29
29
|
}
|