joplin-plugin-tag-navigator 2.8.0 → 2.9.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
|
@@ -31,10 +31,11 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
|
|
|
31
31
|
1. It adds a panel for searching and viewing tagged paragraphs across all your notes. ([video](https://www.youtube.com/watch?v=im0zjQFoXb0))
|
|
32
32
|
- **Search queries**: Search tags using logical operators (AND, OR, NOT), and using free text in the note, title, or notebook name / path.
|
|
33
33
|
- **Save search queries** in notes and sync them across device. ([video](https://www.youtube.com/watch?v=GuzCwYxyYZ0), [tips](#saved-queries))
|
|
34
|
-
- **Sort results by tags** such as priorities, dates, colors, or any other tag. ([video](https://www.youtube.com/watch?v=HvunHOc2zlM), [tips](#saved-queries))
|
|
34
|
+
- **Sort results by tags** such as priorities, dates, colors, or any other tag. Right-click a tag to sort by it or add it to a multi-key sort. ([video](https://www.youtube.com/watch?v=HvunHOc2zlM), [tips](#saved-queries))
|
|
35
35
|
- **Tag-by-notes:** Search for links or [[wikilinks]] to notes (including backlinks to the current note).
|
|
36
36
|
- **Tag in front matter:** All Markdown front matter fields can be treated as tags. ([video](https://www.youtube.com/watch?v=L3zHletRk54), [tips](#front-matter-tags))
|
|
37
37
|
- **Edit tags:** Add, replace and remove inline tags via the panel context menu (right-click on a tag).
|
|
38
|
+
- **Search / extend query from the editor**: Right-click on a tag in the editor to search for it or add it to the current query.
|
|
38
39
|
- **Insert tags** from the panel into the note editor. ([tips](#tag-insertion))
|
|
39
40
|
- **Toggle checkboxes** / TODOs from the panel, including [[x]it! style](https://xit.jotaen.net) checkboxes (click, or right-click for 6 task states). ([tips](#inline-todos))
|
|
40
41
|
- **Nested tags** hierarchy: Search parent tags to find the locations of their children. Example: #parent/child. ([video](https://www.youtube.com/watch?v=h-HdX7npbIw))
|
|
@@ -50,6 +51,7 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
|
|
|
50
51
|
- In a table / database. ([video](https://www.youtube.com/watch?v=L3zHletRk54), [tips](#table-views))
|
|
51
52
|
- In a kanban board. ([video](https://www.youtube.com/watch?v=e7HhQJjpEJg), [tips](#kanban-views))
|
|
52
53
|
3. It adds a panel for quickly navigating between inline tags that appear in the current note, or in all notes ([video](https://www.youtube.com/watch?v=h-HdX7npbIw)).
|
|
54
|
+
- Click a global tag to search for it, or Cmd/Ctrl+click to add it to the current query.
|
|
53
55
|
4. It can convert your existing inline tags to native Joplin tags, so that they are accessible using Joplin's built-in tag search.
|
|
54
56
|
5. It can convert your existing native Joplin tags to inline tags, so that they are accessible using inline tag search (this plugin). ([tips](#converting-joplin-tags))
|
|
55
57
|
6. It renders inline tags and front matter in the Markdown preview, and front matter in the Markdown editor. ([tips](#styling-inline-tags))
|
|
@@ -270,6 +272,7 @@ Saved queries allow you to store search configurations in notes and reuse them a
|
|
|
270
272
|
- A dropdown in the search panel lists all notes containing saved queries, allowing you to quickly switch between them.
|
|
271
273
|
- When you navigate to a note with a saved query, it is automatically loaded into the search panel.
|
|
272
274
|
- To disable automatic loading (for a static panel that only updates via explicit query selection), turn off the setting `Search: Auto-load saved queries from notes`.
|
|
275
|
+
- When you change sort, grouping, or collapse settings from the search panel while a saved query is loaded, the changes are automatically stored in the query's per-query options (only values that differ from global defaults are saved).
|
|
273
276
|
|
|
274
277
|
#### Basic structure
|
|
275
278
|
|
|
@@ -312,7 +315,10 @@ Saved queries allow you to store search configurations in notes and reuse them a
|
|
|
312
315
|
|
|
313
316
|
#### Advanced options
|
|
314
317
|
|
|
315
|
-
- **`sortBy`**: Comma-separated list of
|
|
318
|
+
- **`sortBy`**: Comma-separated list of sort criteria
|
|
319
|
+
- Standard values: `"modified"`, `"created"`, `"title"`, `"text"`, `"notebook"`
|
|
320
|
+
- Tag values: any parent / value tag name (e.g., `"priority"`, `"date"`)
|
|
321
|
+
- Tip: Right-click a tag in the search panel and select `Sort by tag` or `Add to sort` to set sorting interactively. Available for tags with child or value components (e.g., `#priority/high`, `#date=2025-01-15`).
|
|
316
322
|
- **`sortOrder`**: Comma-separated list of sort directions
|
|
317
323
|
- Use "a" / "asc" / "ascend" or "d" / "desc" / "descend"
|
|
318
324
|
- Must correspond to columns in `sortBy`
|
|
@@ -320,12 +326,17 @@ Saved queries allow you to store search configurations in notes and reuse them a
|
|
|
320
326
|
- `"heading"`: Group by heading
|
|
321
327
|
- `"consecutive"`: Group adjacent lines
|
|
322
328
|
- `"item"`: Split by item
|
|
329
|
+
- `"none"`: No grouping (flat list) — each paragraph becomes its own card, enabling cross-note sorting by tag
|
|
323
330
|
- To change the global grouping, right-click on a note title in the search panel. Saved queries can override this with their own `resultGrouping` property.
|
|
331
|
+
- **`resultToggle`**: Boolean to collapse (`true`) or expand (`false`) result cards
|
|
324
332
|
- **`includeCols`**: (Table view only) Comma-separated list of columns to display
|
|
325
333
|
- Can include: note properties, tags, "modified", "created" timestamps
|
|
326
334
|
- Use to slice, sort, or add specific columns
|
|
335
|
+
- Supports rename syntax `col:Display Name` to set custom header labels (e.g. `"status:Current Status, priority:Priority Level"`)
|
|
327
336
|
- **`excludeCols`**: (Table view only) Comma-separated list of columns to hide
|
|
328
337
|
- Removes columns even if they exist in the data
|
|
338
|
+
- **`limit`**: Maximum number of results to display (positive integer)
|
|
339
|
+
- Applied after sorting and filtering
|
|
329
340
|
|
|
330
341
|
#### Complete example
|
|
331
342
|
|
|
@@ -355,15 +366,16 @@ Saved queries allow you to store search configurations in notes and reuse them a
|
|
|
355
366
|
"filter": "rock",
|
|
356
367
|
"displayInNote": "table",
|
|
357
368
|
"options": {
|
|
358
|
-
"includeCols": "title, artist, country, year, modified",
|
|
369
|
+
"includeCols": "title, artist, country:Country of Origin, year, modified",
|
|
359
370
|
"excludeCols": "notebook, line",
|
|
360
371
|
"sortBy": "year, artist",
|
|
361
|
-
"sortOrder": "asc, desc"
|
|
372
|
+
"sortOrder": "asc, desc",
|
|
373
|
+
"limit": 20
|
|
362
374
|
}
|
|
363
375
|
}
|
|
364
376
|
```
|
|
365
377
|
|
|
366
|
-
This example searches for paragraphs that have both `#artist` AND `#album` tags, OR paragraphs with `#single` tag, then filters results containing "rock" anywhere in the text, and displays them in a table sorted by year (ascending) then by artist (descending).
|
|
378
|
+
This example searches for paragraphs that have both `#artist` AND `#album` tags, OR paragraphs with `#single` tag, then filters results containing "rock" anywhere in the text, and displays them in a table sorted by year (ascending) then by artist (descending). The `country` column header is renamed to "Country of Origin".
|
|
367
379
|
|
|
368
380
|
</details>
|
|
369
381
|
|
|
@@ -404,6 +416,7 @@ This example searches for paragraphs that have both `#artist` AND `#album` tags,
|
|
|
404
416
|
- Filtering behaviour depends on the result grouping mode (right-click a note title on the panel to change):
|
|
405
417
|
- **Group by heading** (default): Shows/hides entire sections based on whether they contain matching content.
|
|
406
418
|
- **Split by item**: Shows/hides individual items, useful for filtering specific tasks like `"- [ ]"`.
|
|
419
|
+
- **No grouping**: Each paragraph is a separate card, enabling sorting across notes by tag (e.g., due dates, priorities).
|
|
407
420
|
- To gain more control over filtering by notebook, you may enable the setting `Search: Extract the full notebook path`.
|
|
408
421
|
- Example: Limit results to a notebook that appears in the top level by searching for `|/topNotebook`.
|
|
409
422
|
- Example: Search for `topNotebook/childNotebook` to show only results from childNotebook.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.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": "2.
|
|
9
|
+
"version": "2.9.1",
|
|
10
10
|
"name": "Inline Tag Navigator",
|
|
11
11
|
"description": "Type inline tags or frontmatter in the note editor. View your tagged paragraphs and tasks / TODOs in a search panel, or in a generated note / kanban. 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:33280af54037f9eaf98751da2f3d4d97369977185f4dd4401e26341ee24825cb",
|
|
28
|
+
"_publish_commit": "main:620fdae6b028762d55c191d12ae5580769118144"
|
|
29
29
|
}
|