joplin-plugin-tag-navigator 1.2.1 → 1.2.2
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
|
@@ -18,7 +18,7 @@ Type inline #tags in the note editor. View your tagged paragraphs and tasks / TO
|
|
|
18
18
|
This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://joplinapp.org) in five ways:
|
|
19
19
|
|
|
20
20
|
1. It adds a panel for searching and viewing tagged paragraphs across all your notes ([video](https://www.youtube.com/watch?v=im0zjQFoXb0)).
|
|
21
|
-
- **Save search queries** in notes and sync them across devices ([video](https://www.youtube.com/watch?v=
|
|
21
|
+
- **Save search queries** in notes and sync them across devices ([video](https://www.youtube.com/watch?v=GuzCwYxyYZ0)).
|
|
22
22
|
- **Tag-by-notes:** Search for links or [[wikilinks]] to notes (including backlinks to the current note).
|
|
23
23
|
- **Edit tags:** Add, replace and remove inline tags via the panel context menu (right-click on a tag).
|
|
24
24
|
- **Toggle checkboxes** / TODOs from the panel, including [[x]it! style](https://xit.jotaen.net) checkboxes (click, or right-click for 6 task states).
|
|
@@ -35,40 +35,79 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
35
35
|
|
|
36
36
|
## Demos
|
|
37
37
|
|
|
38
|
-
-
|
|
38
|
+
- [Inline tag search](#inline-tag-search)
|
|
39
|
+
- [Saved search queries](#saved-search-queries)
|
|
40
|
+
- [Navigation panel](#navigation-panel)
|
|
41
|
+
- [Tag insertion](#tag-insertion)
|
|
39
42
|
|
|
40
|
-
|
|
43
|
+
### Inline tag search
|
|
41
44
|
|
|
42
|
-
-
|
|
45
|
+
<img src="img/tag-navigator-search.gif" width="80%" title="search panel demo">
|
|
46
|
+
|
|
47
|
+
### Saved search queries
|
|
48
|
+
|
|
49
|
+
<img src="img/tag-navigator-queries.gif" width="80%" title="saved search queries demo">
|
|
50
|
+
|
|
51
|
+
### Navigation panel
|
|
43
52
|
|
|
44
53
|
<img src="img/tag-navigator-panel.gif" width="80%" title="navigation panel demo">
|
|
45
54
|
|
|
46
|
-
|
|
55
|
+
### Tag insertion
|
|
47
56
|
|
|
48
57
|
<img src="img/tag-navigator-insert.gif" width="80%" title="insert tag demo">
|
|
49
58
|
|
|
50
59
|
## Tips
|
|
51
60
|
|
|
61
|
+
- [Troubleshooting](#troubleshooting)
|
|
62
|
+
- [Custom tag definitions](#custom-tag-definitions)
|
|
63
|
+
- [Inline TODOs](#inline-todos)
|
|
64
|
+
- [Keyboard shortcuts](#keyboard-shortcuts)
|
|
65
|
+
|
|
66
|
+
### Troubleshooting
|
|
67
|
+
|
|
52
68
|
- If any of the actions on note results does not work (toggling checkboxes, editing tags), this is usually resolved by a database update (Ctrl+Shift+D).
|
|
69
|
+
|
|
70
|
+
### Custom tag definitions
|
|
71
|
+
|
|
53
72
|
- The definition of a "tag" can be adjusted with user-defined regular expressions.
|
|
54
73
|
- Example: Every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`.
|
|
55
74
|
- You may also define an exclusion rule to ignore certain tags.
|
|
56
75
|
- Example: Numeric (`#123`) or hexanumeric (`#C0FF1E`) tags can be filtered using an exclusion regex such as `#(\d+|[a-fA-F0-9]{6})$`.
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
- Supported additional checkbox styles
|
|
76
|
+
|
|
77
|
+
### Inline TODOs
|
|
78
|
+
|
|
79
|
+
- Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`).
|
|
80
|
+
- Add support for [additional tags](https://github.com/CalebJohn/joplin-inline-todo?tab=readme-ov-file#confluence-style) for @mentions, +projects and //due-dates using a custom tag regex such as `(?<=^|\s)([#@+]|\/\/)([^\s#@'\"]*\w)`.
|
|
81
|
+
- Supported additional checkbox styles (inspired by `[x]it!`).
|
|
82
|
+
- Set any of them to done by clicking the checkbox in the search panel.
|
|
63
83
|
|
|
64
84
|

|
|
65
85
|
|
|
86
|
+
- Toggle between all states by right-clicking on a checkbox.
|
|
87
|
+
|
|
88
|
+

|
|
89
|
+
|
|
66
90
|
- You may increase the checkbox size on smaller screens by setting `Search: Panel style` with the CSS `.itags-search-checkbox { width: 18px; height: 18px; font-size: 18px }` (adjust as needed).
|
|
67
|
-
-
|
|
91
|
+
- Furthermore, every checkbox in the text (even ones that are not tagged by any inline #tag) may be defined as a tag using a custom regex such as `(?<=^|\s)([#]|\-\s\[[x\s@\?!~]\])([^\s#'\"]*\w)?`.
|
|
92
|
+
- You may then use queries to search for tag-tasks based on their state (`- [ ]`, `- [x]`, `- [@]`, ...).
|
|
93
|
+
|
|
94
|
+
### Keyboard shortcuts
|
|
95
|
+
|
|
96
|
+
- Default command shortcuts
|
|
97
|
+
- These can be set up in Joplin's keyboard shortcut settings.
|
|
98
|
+
|
|
99
|
+
| Key | Action |
|
|
100
|
+
| --- | ------ |
|
|
101
|
+
| Ctrl + Shift + T | Toggle search panel |
|
|
102
|
+
| Ctrl + Shift + I | Focus on search panel (search tag / insert tag) |
|
|
103
|
+
| Ctrl + Shift + D | Update tag database |
|
|
104
|
+
| Ctrl + Shift + L | Load search query from current note |
|
|
105
|
+
|
|
106
|
+
- Tag / note filter (search panel) shortcuts
|
|
68
107
|
|
|
69
108
|
| Key | Action |
|
|
70
109
|
| --- | ------ |
|
|
71
|
-
| Enter | Add tag(s) / note to query / note |
|
|
110
|
+
| Enter | Add tag(s) / note to query / note (see config) |
|
|
72
111
|
| 2nd Enter | Search notes based on current query |
|
|
73
112
|
| Delete | Remove last added tag / note from query |
|
|
74
113
|
| Esc | Clear the filter (display all tags / notes) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
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": "1.2.
|
|
9
|
+
"version": "1.2.2",
|
|
10
10
|
"name": "Inline Tag Navigator",
|
|
11
11
|
"description": "Type inline #tags in the note editor. View your tagged paragraphs and tasks / TODOs in an advanced search panel, or in a generated note. Convert inline and Obsidian tags into Joplin tags, and vice versa.",
|
|
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:e5d61471add6a477eb69c6815fd493e0b8c7fd9df7daac8103c2f7b8d6d3026a",
|
|
28
|
+
"_publish_commit": "main:fd02fc3bdb3c33271e636befab59b847aa9082e3"
|
|
29
29
|
}
|