joplin-plugin-tag-navigator 0.1.2 → 0.2.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
|
@@ -1,15 +1,42 @@
|
|
|
1
1
|
# Inline Tag Navigator
|
|
2
2
|
|
|
3
|
-
This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://joplinapp.org) in
|
|
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
|
|
6
|
-
- It
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
- It adds a panel for searching tagged paragraphs across your notes. ([YouTube](https://www.youtube.com/watch?v=im0zjQFoXb0))
|
|
6
|
+
- 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
|
+
|
|
9
|
+
After installing the plugin, check the commands listed under `Tag Navigator` in the `Tools` menu, as well as the corresponding settings section.
|
|
10
|
+
|
|
11
|
+
## Demos
|
|
12
|
+
|
|
13
|
+
- Watch the tag search demo on YouTube:
|
|
14
|
+
|
|
15
|
+
[](https://www.youtube.com/watch?v=im0zjQFoXb0)
|
|
16
|
+
|
|
17
|
+
- Watch the navigation panel demo:
|
|
10
18
|
|
|
11
19
|

|
|
12
20
|
|
|
21
|
+
## Tips
|
|
22
|
+
|
|
23
|
+
- 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]*`.
|
|
26
|
+
|
|
27
|
+
## Motivation
|
|
28
|
+
|
|
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.
|
|
30
|
+
- 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
|
+
- 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
|
+
- I'd like to experiment here with information retrieval from single paragraphs, or outline items, as atomic blocks of information, using inline tags.
|
|
33
|
+
|
|
34
|
+
## Objectives
|
|
35
|
+
|
|
36
|
+
1. Be able to tag and efficiently search single paragraphs among all notes, using tags and free text.
|
|
37
|
+
2. Browse the entire content of these paragraphs without having to open each note.
|
|
38
|
+
3. Make this accessible and user-friendly.
|
|
39
|
+
|
|
13
40
|
## Companion plugins
|
|
14
41
|
|
|
15
42
|
- The excellent [Inline Tags](https://github.com/roman-r-m/joplin-inline-tags-plugin) plugin can help you add tags on the fly
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.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",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"publish"
|
|
16
16
|
],
|
|
17
17
|
"devDependencies": {
|
|
18
|
+
"@joplin/lib": "~2.9",
|
|
18
19
|
"@types/node": "^18.7.13",
|
|
19
20
|
"chalk": "^4.1.0",
|
|
20
21
|
"copy-webpack-plugin": "^11.0.0",
|
|
@@ -24,7 +25,10 @@
|
|
|
24
25
|
"ts-loader": "^9.3.1",
|
|
25
26
|
"typescript": "^4.8.2",
|
|
26
27
|
"webpack": "^5.74.0",
|
|
27
|
-
"webpack-cli": "^4.10.0"
|
|
28
|
-
|
|
28
|
+
"webpack-cli": "^4.10.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"markdown-it": "^14.0.0",
|
|
32
|
+
"markdown-it-task-lists": "^2.1.1"
|
|
29
33
|
}
|
|
30
34
|
}
|
|
Binary file
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "joplin.plugin.alondmnt.tag-navigator",
|
|
4
4
|
"app_min_version": "2.10",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.2.0",
|
|
6
6
|
"name": "Inline Tag Navigator",
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "A system to organize, search, browse and convert inline tags via dedicated panels.",
|
|
8
8
|
"author": "Alon Diament",
|
|
9
9
|
"homepage_url": "https://github.com/alondmnt/joplin-plugin-tag-navigator#readme",
|
|
10
10
|
"repository_url": "https://github.com/alondmnt/joplin-plugin-tag-navigator",
|
|
@@ -17,6 +17,6 @@
|
|
|
17
17
|
],
|
|
18
18
|
"screenshots": [],
|
|
19
19
|
"icons": {},
|
|
20
|
-
"_publish_hash": "sha256:
|
|
21
|
-
"_publish_commit": "main:
|
|
20
|
+
"_publish_hash": "sha256:61c6122776402b4b54f072bd1466c0f391348570db129ad28b9abd7cffb45ef2",
|
|
21
|
+
"_publish_commit": "main:bf37d63fc62c83cde020946349a61e23bbe9ca8f"
|
|
22
22
|
}
|