joplin-plugin-tag-navigator 1.3.0 → 1.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
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![DOI](https://zenodo.org/badge/753598497.svg)](https://zenodo.org/doi/10.5281/zenodo.10701718) ![downloads](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=downloads&query=%24.totalDownloads&url=https%3A%2F%2Fjoplin-plugin-downloads.vercel.app%2Fapi%3Fplugin%3Djoplin.plugin.alondmnt.tag-navigator)
4
4
 
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.
5
+ 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.
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,6 +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=GuzCwYxyYZ0)).
22
22
  - **Display results in a table** or a list ([video](https://www.youtube.com/watch?v=J7h8c6iW4rU)).
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
25
  - **Edit tags:** Add, replace and remove inline tags via the panel context menu (right-click on a tag).
25
26
  - **Insert tags** from the panel into the note editor ([video](#tag-insertion)).
26
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).
@@ -82,6 +83,33 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
82
83
  - You may also define an exclusion rule to ignore certain tags.
83
84
  - Example: Numeric (`#123`) or hexanumeric (`#C0FF1E`) tags can be filtered using an exclusion regex such as `#(\d+|[a-fA-F0-9]{6})$`.
84
85
 
86
+ ### Front matter tags
87
+
88
+ For example, the following YAML front matter, when inserted at the top of the note:
89
+
90
+ ```yaml
91
+ ---
92
+ nested: tag with spaces
93
+ arrayed: [v1, v2, v3]
94
+ tags:
95
+ - tag1
96
+ - tag2
97
+ ---
98
+ ```
99
+
100
+ will be converted to the following inline tags:
101
+
102
+ ```text
103
+ #nested/tag_with_spaces
104
+ #arrayed/v1
105
+ #arrayed/v2
106
+ #arrayed/v3
107
+ #tag1
108
+ #tag2
109
+ ```
110
+
111
+ These tags will be accessible in the search panel / notes / tables like standard inline tags.
112
+
85
113
  ### Inline TODOs
86
114
 
87
115
  - Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-tag-navigator",
3
- "version": "1.3.0",
3
+ "version": "1.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",
@@ -6,9 +6,9 @@
6
6
  "desktop",
7
7
  "mobile"
8
8
  ],
9
- "version": "1.3.0",
9
+ "version": "1.4.0",
10
10
  "name": "Inline Tag Navigator",
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.",
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",
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:0f9c856c963e137b628bfdac1d7b51caaa13970b3560ea777c3f3bc44d48aeba",
28
- "_publish_commit": "main:97f994a0a8d96c057917faa40e612018d2e4eaf3"
27
+ "_publish_hash": "sha256:dab318709b65aeec69c88507d1088e266daa91db2781b522a88d67e265d34b46",
28
+ "_publish_commit": "main:b21815a3972407802eba320efebf98c732ef6fbb"
29
29
  }