joplin-plugin-tag-navigator 2.0.1 → 2.1.0
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
|
@@ -27,7 +27,8 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
|
|
|
27
27
|
- **Nested tags** hierarchy: Search parent tags to find the locations of their children. Example: #parent/child. ([video](https://www.youtube.com/watch?v=h-HdX7npbIw))
|
|
28
28
|
- **Tag values**: Assign values to tags. Example: #tag=value. ([tips](#tag-values))
|
|
29
29
|
- **Tag ranges**: Search for a range of tags, according to their lexicographic order. Example: #2024/07 -> #2024/08. ([tips](#tag-ranges))
|
|
30
|
-
- **Today's date**: Search tags by today's date. Examples: #today, #today+1 (tomorrow), #today-10 (ten days ago).
|
|
30
|
+
- **Today's date**: Search tags by today's date. Examples: #today, #today+1 (tomorrow), #today-10 (ten days ago). ([tips](#tag-ranges))
|
|
31
|
+
- **Colour tags**: Use colour tags to highlight results in the search panel. Example: #color=red. ([tips](#colour-tags))
|
|
31
32
|
2. It can generate a note with all tagged paragaraphs that match a saved query (dynamically updated). ([video](https://www.youtube.com/watch?v=GuzCwYxyYZ0))
|
|
32
33
|
- Save a query in a note, and switch note view on: `Tools --> Tag Navigator --> Toggle search results display in note` .
|
|
33
34
|
- Display results in a table / database. ([video](https://www.youtube.com/watch?v=L3zHletRk54), [tips](#table-views))
|
|
@@ -74,6 +75,7 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
74
75
|
- [Tag values](#tag-values)
|
|
75
76
|
- [Table views](#table-views)
|
|
76
77
|
- [Inline TODOs](#inline-todos)
|
|
78
|
+
- [Colour tags](#colour-tags)
|
|
77
79
|
- [Keyboard shortcuts](#keyboard-shortcuts)
|
|
78
80
|
- [Converting Joplin tags](#converting-joplin-tags)
|
|
79
81
|
|
|
@@ -98,6 +100,9 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
98
100
|
- Tag ranges can be inserted using the "Tag range" input boxes, or by right-clicking on a tag in the query area, and selecting `Edit query`.
|
|
99
101
|
- Example: Edit a tag or tag range and type `#prefix* ->` to search for all tags starting with `#prefix`.
|
|
100
102
|
- If you type only `#prefix`, the query will be converted to a standard tag search (matching only the tag `#prefix`).
|
|
103
|
+
- Tag ranges can be used to search for tags by today's date.
|
|
104
|
+
- Example: `#today ->` will search for all tags starting with `#today`.
|
|
105
|
+
- Example: `#today -> #today+1` will search for all tags starting with `#today` and up to `#today+1` (inclusive, i.e., returning two days).
|
|
101
106
|
|
|
102
107
|
### Tag values
|
|
103
108
|
|
|
@@ -198,6 +203,19 @@ These tags will be accessible in the search panel / notes / tables like standard
|
|
|
198
203
|
- 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)?`.
|
|
199
204
|
- You may then use queries to search for tag-tasks based on their state (`- [ ]`, `- [x]`, `- [@]`, ...).
|
|
200
205
|
|
|
206
|
+
### Colour tags
|
|
207
|
+
|
|
208
|
+
- Colour tags can be used to highlight results in the search panel, e.g., according to their priority.
|
|
209
|
+
- Example: `#color=DeepSeaGreen`, `#color=#008080` or `#color=rgb(0, 128, 128)`.
|
|
210
|
+
- HTML colour names are supported.
|
|
211
|
+
- You may customise the colour tag in the plugin settings.
|
|
212
|
+
- Example: Set it to be `#priority/`, and then tag by `#priority/red`.
|
|
213
|
+
- You may select whether to paint the background or the border of the results with the selected colour.
|
|
214
|
+
- Set the colour of an entire note by tagging one of its first 2 lines with the colour tag.
|
|
215
|
+
- Different sections of the same note may be tagged with different colours. They will be displayed separately in the panel (see an example below).
|
|
216
|
+
|
|
217
|
+

|
|
218
|
+
|
|
201
219
|
### Keyboard shortcuts
|
|
202
220
|
|
|
203
221
|
- Default command shortcuts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
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.0
|
|
9
|
+
"version": "2.1.0",
|
|
10
10
|
"name": "Inline Tag Navigator",
|
|
11
11
|
"description": "Type inline #tags or front matter in the note editor. View your tagged paragraphs and tasks / TODOs in a search panel, or in a generated note. 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:e6f3b7ae348d66efae20f8322766d90ef1198dea65cc90a5bbfbe766f6cf3e4e",
|
|
28
|
+
"_publish_commit": "main:112bd7d39125ba72d15975967bb83027cefbb7fd"
|
|
29
29
|
}
|