joplin-plugin-tag-navigator 0.2.0 → 0.2.2

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,9 +2,10 @@
2
2
 
3
3
  This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://joplinapp.org) in three ways:
4
4
 
5
- - It adds a panel for searching tagged paragraphs across your notes. ([YouTube](https://www.youtube.com/watch?v=im0zjQFoXb0))
5
+ - It adds a panel for searching tagged paragraphs across your notes ([video](https://www.youtube.com/watch?v=im0zjQFoXb0)).
6
+ - Save favourite search queries in notes and sync them across devices.
6
7
  - It adds a panel for navigating between inline tags that appear in the current note.
7
- - It can convert your existing inline tags to native Joplin tags, so that they are accessible using tag search.
8
+ - It can convert your existing inline tags to native Joplin tags, so that they are accessible using Joplin's built-in tag search.
8
9
 
9
10
  After installing the plugin, check the commands listed under `Tag Navigator` in the `Tools` menu, as well as the corresponding settings section.
10
11
 
@@ -20,13 +21,14 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
20
21
 
21
22
  ## Tips
22
23
 
24
+ - The definition of a "tag" can be adjusted with user-defined regular expressions.
25
+ - For example, every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`.
23
26
  - Tag search can be used to search, filter and toggle checkboxes (inline TODOs) directly from the panel.
24
- - The definition of a "tag" can be adjusted with user-defined regular expression.
25
- - For example, every word in the text may be defined as a tag using a regex such as `[A-Za-z0-9]+[\w]*`.
27
+ - To support [additional tags](https://github.com/CalebJohn/joplin-inline-todo?tab=readme-ov-file#confluence-style) for @mentions, +projects and //due-dates one can use a custom regex such as `(?<=^|\s)([#@+]|\/\/)([^\s#@+]*\w)`.
26
28
 
27
29
  ## Motivation
28
30
 
29
- - Notes are arguably the atomic blocks of information in [Joplin](https://joplinapp.org). They can be linked to, tagged, and come up in search results. Joplin is optimized for this, and these features are pretty efficient.
31
+ - Notes are arguably the atomic blocks of information in [Joplin](https://joplinapp.org). They can be linked to, tagged, and come up in search results. Joplin is optimised for this, and these features are pretty efficient.
30
32
  - However, among 100s-1000s of long-form notes (that are hardly "atomic"), it remains challenging to find a small piece of information, idea, or memory.
31
33
  - Tags can be especially helpful in distinguishing between the content of a text (what it's about) and its form or function (what type of text it is or what purpose it serves). The first is more easily captured by traditional or [semantic search](https://github.com/alondmnt/joplin-plugin-jarvis). The latter can be conveniently captured by tags, such as #concept, #plan, #memory, #realization, #idea, #review, #bug, #feature, and others.
32
34
  - I'd like to experiment here with information retrieval from single paragraphs, or outline items, as atomic blocks of information, using inline tags.
@@ -40,4 +42,7 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
40
42
  ## Companion plugins
41
43
 
42
44
  - The excellent [Inline Tags](https://github.com/roman-r-m/joplin-inline-tags-plugin) plugin can help you add tags on the fly
43
- - I created a fork for the [Rich Markdown](https://github.com/alondmnt/joplin-rich-markdown) plugin and updated the "Stylish" style to highlight inline tags in notes ([download](https://github.com/alondmnt/joplin-rich-markdown/releases/download/cm-rm-tag/plugin.calebjohn.rich-markdown.jpl))
45
+ - I created a fork for the [Rich Markdown](https://github.com/alondmnt/joplin-rich-markdown) plugin and updated the "Stylish" style to highlight inline tags in notes ([download](https://github.com/alondmnt/joplin-rich-markdown/releases/download/cm-rm-tag/plugin.calebjohn.rich-markdown.jpl))
46
+
47
+
48
+ [![DOI](https://zenodo.org/badge/753598497.svg)](https://zenodo.org/doi/10.5281/zenodo.10701718)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-tag-navigator",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
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",
@@ -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.2.0",
5
+ "version": "0.2.2",
6
6
  "name": "Inline Tag Navigator",
7
7
  "description": "A system to organize, search, browse and convert inline tags via dedicated panels.",
8
8
  "author": "Alon Diament",
@@ -17,6 +17,6 @@
17
17
  ],
18
18
  "screenshots": [],
19
19
  "icons": {},
20
- "_publish_hash": "sha256:61c6122776402b4b54f072bd1466c0f391348570db129ad28b9abd7cffb45ef2",
21
- "_publish_commit": "main:bf37d63fc62c83cde020946349a61e23bbe9ca8f"
20
+ "_publish_hash": "sha256:d7f201d5c160fff02129dfe715bc20b47eda1635efb35919389ddf5331106406",
21
+ "_publish_commit": "main:9e879ecb68b3f927dc8c76289078579f5e748cd5"
22
22
  }