joplin-plugin-tag-navigator 0.3.0 → 0.4.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
|
@@ -5,6 +5,8 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
|
|
|
5
5
|
- It adds a panel for searching tagged paragraphs across your notes ([video](https://www.youtube.com/watch?v=im0zjQFoXb0)).
|
|
6
6
|
- Save favourite search queries in notes and sync them across devices ([video](https://www.youtube.com/watch?v=xIBZl2Ala9A)).
|
|
7
7
|
- Tag-by-notes: You may also search for links or [[wikilinks]] to notes.
|
|
8
|
+
- Add, replace and remove inline tags via the panel context menu (right-click on a tag).
|
|
9
|
+
- Toggle checkboxes / TODOs from the panel.
|
|
8
10
|
- It adds a panel for navigating between inline tags that appear in the current note.
|
|
9
11
|
- It can convert your existing inline tags to native Joplin tags, so that they are accessible using Joplin's built-in tag search.
|
|
10
12
|
|
|
@@ -24,9 +26,9 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
24
26
|
|
|
25
27
|
- The definition of a "tag" can be adjusted with user-defined regular expressions.
|
|
26
28
|
- For example, every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`.
|
|
27
|
-
-
|
|
29
|
+
- Inline TODOs:
|
|
28
30
|
- Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`).
|
|
29
|
-
-
|
|
31
|
+
- 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)`.
|
|
30
32
|
- Tag / note filter keyboard shortcuts:
|
|
31
33
|
|
|
32
34
|
| Key | Action |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.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",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"publish"
|
|
16
16
|
],
|
|
17
17
|
"devDependencies": {
|
|
18
|
+
"@codemirror/view": "^6.26.0",
|
|
18
19
|
"@joplin/lib": "~2.9",
|
|
19
20
|
"@types/node": "^18.7.13",
|
|
20
21
|
"chalk": "^4.1.0",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "joplin.plugin.alondmnt.tag-navigator",
|
|
4
4
|
"app_min_version": "2.10",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.4.0",
|
|
6
6
|
"name": "Inline Tag Navigator",
|
|
7
7
|
"description": "A system to organize, search, browse and convert inline tags and note mentions via dedicated panels.",
|
|
8
8
|
"author": "Alon Diament",
|
|
@@ -13,10 +13,13 @@
|
|
|
13
13
|
"tags"
|
|
14
14
|
],
|
|
15
15
|
"categories": [
|
|
16
|
-
"tags"
|
|
16
|
+
"tags",
|
|
17
|
+
"personal knowledge management",
|
|
18
|
+
"productivity",
|
|
19
|
+
"search"
|
|
17
20
|
],
|
|
18
21
|
"screenshots": [],
|
|
19
22
|
"icons": {},
|
|
20
|
-
"_publish_hash": "sha256:
|
|
21
|
-
"_publish_commit": "main:
|
|
23
|
+
"_publish_hash": "sha256:0445d8bfde2d36ebdcca73c2b4285514debe5c0aff00fa78e633e9e9e4c5b118",
|
|
24
|
+
"_publish_commit": "main:ef44640c2e4fb3f17f90029385678625f924e5ed"
|
|
22
25
|
}
|