joplin-plugin-tag-navigator 1.0.0 → 1.2.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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://zenodo.org/doi/10.5281/zenodo.10701718) 
|
|
4
4
|
|
|
5
|
-
Type inline #tags in the note editor. View your tagged paragraphs and
|
|
5
|
+
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.
|
|
6
6
|
|
|
7
7
|
[Community discussion thread](https://discourse.joplinapp.org/t/plugin-inline-tag-navigator-v0-8-0-2024-06-26/35726)
|
|
8
8
|
|
|
@@ -21,7 +21,7 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
|
|
|
21
21
|
- **Save search queries** in notes and sync them across devices ([video](https://www.youtube.com/watch?v=xIBZl2Ala9A)).
|
|
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
|
-
- **Toggle checkboxes** / TODOs from the panel, including [[x]it! style](https://xit.jotaen.net) checkboxes.
|
|
24
|
+
- **Toggle checkboxes** / TODOs from the panel, including [[x]it! style](https://xit.jotaen.net) checkboxes (click, or right-click for 6 task states).
|
|
25
25
|
- **Nested tags** hierarchy: Search parent tags to find the locations of their children. Example: #parent/child.
|
|
26
26
|
- Search for a **range of tags**, according to their lexicographic order. Example: #2024/07 -> #2024/08
|
|
27
27
|
- Search tags by **today's date**. Examples: #today, #today+1 (tomorrow), #today-10 (ten days ago)
|
|
@@ -47,10 +47,14 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
47
47
|
|
|
48
48
|
- 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).
|
|
49
49
|
- The definition of a "tag" can be adjusted with user-defined regular expressions.
|
|
50
|
-
-
|
|
50
|
+
- Example: Every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`.
|
|
51
|
+
- You may also define an exclusion rule to ignore certain tags.
|
|
52
|
+
- Example: Numeric (`#123`) or hexanumeric (`#C0FF1E`) tags can be filtered using an exclusion regex such as `#(\d+|[a-fA-F0-9]{6})$`.
|
|
51
53
|
- Inline TODOs:
|
|
52
54
|
- Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`).
|
|
53
55
|
- 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)`.
|
|
56
|
+
- 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)?`.
|
|
57
|
+
- You may then use queries to search for tag-tasks based on their state (`- [ ]`, `- [x]`, `- [@]`, ...).
|
|
54
58
|
- Supported additional checkbox styles
|
|
55
59
|
|
|
56
60
|

|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.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,9 +6,9 @@
|
|
|
6
6
|
"desktop",
|
|
7
7
|
"mobile"
|
|
8
8
|
],
|
|
9
|
-
"version": "1.
|
|
9
|
+
"version": "1.2.0",
|
|
10
10
|
"name": "Inline Tag Navigator",
|
|
11
|
-
"description": "Type inline #tags in the note editor. View your tagged paragraphs and
|
|
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",
|
|
13
13
|
"homepage_url": "https://github.com/alondmnt/joplin-plugin-tag-navigator#readme",
|
|
14
14
|
"repository_url": "https://github.com/alondmnt/joplin-plugin-tag-navigator",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
],
|
|
25
25
|
"screenshots": [],
|
|
26
26
|
"icons": {},
|
|
27
|
-
"_publish_hash": "sha256:
|
|
28
|
-
"_publish_commit": "main:
|
|
27
|
+
"_publish_hash": "sha256:15e2c34a3524ed03d6299f55d93a4ecd350c94e09aa5047a05540d473be83ff1",
|
|
28
|
+
"_publish_commit": "main:6053cb7308536efe4c5c8e65afcc501f47aa62f1"
|
|
29
29
|
}
|