joplin-plugin-tag-navigator
Advanced tools
Comparing version 1.3.0 to 1.4.0
{ | ||
"name": "joplin-plugin-tag-navigator", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive", |
@@ -9,5 +9,5 @@ { | ||
], | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"name": "Inline Tag Navigator", | ||
"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.", | ||
"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.", | ||
"author": "Alon Diament", | ||
@@ -28,4 +28,4 @@ "homepage_url": "https://github.com/alondmnt/joplin-plugin-tag-navigator#readme", | ||
"icons": {}, | ||
"_publish_hash": "sha256:0f9c856c963e137b628bfdac1d7b51caaa13970b3560ea777c3f3bc44d48aeba", | ||
"_publish_commit": "main:97f994a0a8d96c057917faa40e612018d2e4eaf3" | ||
"_publish_hash": "sha256:dab318709b65aeec69c88507d1088e266daa91db2781b522a88d67e265d34b46", | ||
"_publish_commit": "main:b21815a3972407802eba320efebf98c732ef6fbb" | ||
} |
@@ -5,3 +5,3 @@ # ☸️ Inline Tag Navigator | ||
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. | ||
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. | ||
@@ -25,2 +25,3 @@ [Community discussion thread](https://discourse.joplinapp.org/t/plugin-inline-tag-navigator-v0-8-0-2024-06-26/35726) | ||
- **Tag-by-notes:** Search for links or [[wikilinks]] to notes (including backlinks to the current note). | ||
- **Tag in front matter:** All Markdown front matter fields can be treated as tags. | ||
- **Edit tags:** Add, replace and remove inline tags via the panel context menu (right-click on a tag). | ||
@@ -87,2 +88,29 @@ - **Insert tags** from the panel into the note editor ([video](#tag-insertion)). | ||
### Front matter tags | ||
For example, the following YAML front matter, when inserted at the top of the note: | ||
```yaml | ||
--- | ||
nested: tag with spaces | ||
arrayed: [v1, v2, v3] | ||
tags: | ||
- tag1 | ||
- tag2 | ||
--- | ||
``` | ||
will be converted to the following inline tags: | ||
```text | ||
#nested/tag_with_spaces | ||
#arrayed/v1 | ||
#arrayed/v2 | ||
#arrayed/v3 | ||
#tag1 | ||
#tag2 | ||
``` | ||
These tags will be accessible in the search panel / notes / tables like standard inline tags. | ||
### Inline TODOs | ||
@@ -89,0 +117,0 @@ |
Sorry, the diff of this file is not supported yet
407324
201