joplin-plugin-tag-navigator 1.4.0 → 1.4.1
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
|
@@ -19,9 +19,9 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
|
|
|
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
21
|
- **Save search queries** in notes and sync them across devices ([video](https://www.youtube.com/watch?v=GuzCwYxyYZ0)).
|
|
22
|
-
- **Display results in a table** or a list ([video](https://www.youtube.com/watch?v=
|
|
22
|
+
- **Display results in a table** or a list ([video](https://www.youtube.com/watch?v=L3zHletRk54)).
|
|
23
23
|
- **Tag-by-notes:** Search for links or [[wikilinks]] to notes (including backlinks to the current note).
|
|
24
|
-
- **Tag in front matter:** All Markdown front matter fields can be treated as tags.
|
|
24
|
+
- **Tag in front matter:** All Markdown front matter fields can be treated as tags ([video](https://www.youtube.com/watch?v=L3zHletRk54)).
|
|
25
25
|
- **Edit tags:** Add, replace and remove inline tags via the panel context menu (right-click on a tag).
|
|
26
26
|
- **Insert tags** from the panel into the note editor ([video](#tag-insertion)).
|
|
27
27
|
- **Toggle checkboxes** / TODOs from the panel, including [[x]it! style](https://xit.jotaen.net) checkboxes (click, or right-click for 6 task states). See also [tips](#inline-todos).
|
|
@@ -68,6 +68,7 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
|
|
|
68
68
|
|
|
69
69
|
- [Troubleshooting](#troubleshooting)
|
|
70
70
|
- [Custom tag definitions](#custom-tag-definitions)
|
|
71
|
+
- [Front matter tags](#front-matter-tags)
|
|
71
72
|
- [Inline TODOs](#inline-todos)
|
|
72
73
|
- [Keyboard shortcuts](#keyboard-shortcuts)
|
|
73
74
|
- [Converting Joplin tags](#converting-joplin-tags)
|
|
@@ -106,9 +107,10 @@ will be converted to the following inline tags:
|
|
|
106
107
|
#arrayed/v3
|
|
107
108
|
#tag1
|
|
108
109
|
#tag2
|
|
110
|
+
#frontmatter
|
|
109
111
|
```
|
|
110
112
|
|
|
111
|
-
These tags will be accessible in the search panel / notes / tables like standard inline tags.
|
|
113
|
+
These tags will be accessible in the search panel / notes / tables like standard inline tags. The last tag is `#frontmatter` and is used to indicate that the tags were extracted from the front matter section of the note.
|
|
112
114
|
|
|
113
115
|
### Inline TODOs
|
|
114
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
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.4.
|
|
9
|
+
"version": "1.4.1",
|
|
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:06cbe55db5afd4e0e11b43891f07388ed3b9c61997d1c02ad0938f5599c4a704",
|
|
28
|
+
"_publish_commit": "main:7de70e5010c02fe762e18f356e8acda384665d24"
|
|
29
29
|
}
|