joplin-plugin-tag-navigator 2.1.1 → 2.1.3
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
|
@@ -22,7 +22,7 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
|
|
|
22
22
|
- **Tag-by-notes:** Search for links or [[wikilinks]] to notes (including backlinks to the current note).
|
|
23
23
|
- **Tag in front matter:** All Markdown front matter fields can be treated as tags. ([video](https://www.youtube.com/watch?v=L3zHletRk54), [tips](#front-matter-tags))
|
|
24
24
|
- **Edit tags:** Add, replace and remove inline tags via the panel context menu (right-click on a tag).
|
|
25
|
-
- **Insert tags** from the panel into the note editor. ([
|
|
25
|
+
- **Insert tags** from the panel into the note editor. ([tips](#tag-insertion))
|
|
26
26
|
- **Toggle checkboxes** / TODOs from the panel, including [[x]it! style](https://xit.jotaen.net) checkboxes (click, or right-click for 6 task states). ([tips](#inline-todos))
|
|
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))
|
|
@@ -62,17 +62,14 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
62
62
|
|
|
63
63
|
<img src="img/tag-navigator-panel.gif" width="80%" title="navigation panel demo">
|
|
64
64
|
|
|
65
|
-
### Tag insertion
|
|
66
|
-
|
|
67
|
-
<img src="img/tag-navigator-insert.gif" width="80%" title="insert tag demo">
|
|
68
|
-
|
|
69
65
|
## Tips
|
|
70
66
|
|
|
71
67
|
- [Troubleshooting](#troubleshooting)
|
|
72
68
|
- [Custom tag definitions](#custom-tag-definitions)
|
|
73
|
-
- [
|
|
69
|
+
- [Tag insertion](#tag-insertion)
|
|
74
70
|
- [Tag ranges](#tag-ranges)
|
|
75
71
|
- [Tag values](#tag-values)
|
|
72
|
+
- [Front matter tags](#front-matter-tags)
|
|
76
73
|
- [Table views](#table-views)
|
|
77
74
|
- [Inline TODOs](#inline-todos)
|
|
78
75
|
- [Colour tags](#colour-tags)
|
|
@@ -90,6 +87,12 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
90
87
|
- You may also define an exclusion rule to ignore certain tags.
|
|
91
88
|
- Example: Numeric (`#123`) or hexanumeric (`#C0FF1E`) tags can be filtered using an exclusion regex such as `#(\d+|[a-fA-F0-9]{6})$`.
|
|
92
89
|
|
|
90
|
+
### Tag insertion
|
|
91
|
+
|
|
92
|
+
- You may insert a tag into the note editor by:
|
|
93
|
+
- Starting to type a tag in the search panel, and pressing `Shift+Enter`.
|
|
94
|
+
- Right-clicking on a tag in the search panel, and selecting `Insert tag`.
|
|
95
|
+
|
|
93
96
|
### Tag ranges
|
|
94
97
|
|
|
95
98
|
- Tag ranges can be used to search for a range of tags, according to their lexicographic order.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
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.1.
|
|
9
|
+
"version": "2.1.3",
|
|
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:807675636d329b7d249a932a942477fe941d147107a29c00032d99341a862cdf",
|
|
28
|
+
"_publish_commit": "main:a7cf666a3602b160a38a25e668f8848cb32ffc9c"
|
|
29
29
|
}
|