joplin-plugin-tag-navigator 2.6.0 → 2.6.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
@@ -15,7 +15,7 @@ Type inline tags or frontmatter in the note editor. View your tagged paragraphs
15
15
 
16
16
  ## Features
17
17
 
18
- This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://joplinapp.org) in five ways:
18
+ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://joplinapp.org) in six ways:
19
19
 
20
20
  1. It adds a panel for searching and viewing tagged paragraphs across all your notes. ([video](https://www.youtube.com/watch?v=im0zjQFoXb0))
21
21
  - **Search queries**: Search tags using logical operators (AND, OR, NOT), and using free text in the note, title, or notebook name / path.
@@ -40,16 +40,19 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
40
40
  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)).
41
41
  4. It can convert your existing inline tags to native Joplin tags, so that they are accessible using Joplin's built-in tag search.
42
42
  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))
43
+ 6. It renders inline tags and front matter in the Markdown preview, and front matter in the Markdown editor. ([tips](#styling-inline-tags))
43
44
 
44
45
  After installing the plugin, check the commands listed under `Tag Navigator` in the `Tools` menu, as well as the corresponding settings section.
45
46
 
46
47
  ## Demos
47
48
 
49
+ - [All video tutorials](https://www.youtube.com/playlist?list=PLV4DhNiuF20XCdqNEo1a190dkNFo69rd-)
48
50
  - [Inline tag search](#inline-tag-search)
49
51
  - [Saved search queries](#saved-search-queries)
52
+ - [Sort results by tags, and date tags actions](https://www.youtube.com/watch?v=HvunHOc2zlM)
50
53
  - [Table view / database](#table-view--database)
54
+ - [Kanban view](https://www.youtube.com/watch?v=e7HhQJjpEJg)
51
55
  - [Navigation panel](#navigation-panel)
52
- - [Tag insertion](#tag-insertion)
53
56
 
54
57
  ### Inline tag search
55
58
 
@@ -376,19 +379,19 @@ This example searches for paragraphs that have both `#artist` AND `#album` tags,
376
379
 
377
380
  ![colour tags](img/tag-navigator-colours.png)
378
381
 
379
- ### Styling inline tags in the Markdown preview
382
+ ### Styling inline tags
380
383
 
381
- The Markdown preview pane wraps every match in `itags-search-renderedTag` and, when the token starts with `#`, `@`, `+`, or `//`, adds `itags-search-renderedTag--hash`, `--at`, `--plus`, or `--slash`. You may define their appearance in `userstyle.css`, e.g.:
384
+ The Markdown preview pane and the Tag Navigator search panel wrap every matched tag in the class `itags-search-renderedTag` and, when the token starts with `#`, `@`, `+`, `//`, or any other character, add `itags-search-renderedTag--hash`, `--at`, `--plus`, `--slash`, `--<other char>`. You may modify their appearance in `userstyle.css` (for Markdown preview), or in the `Search: Panel style` setting (for the plugin's search panel). For example:
382
385
 
383
386
  ```css
384
387
  /* optional: specify different sub-styles for each type of tag */
385
388
  .itags-search-renderedTag {
386
389
  background-color: #a576b3ff;
387
- }
390
+ } /* global style */
388
391
 
389
392
  .itags-search-renderedTag--at {
390
393
  background-color: #6fae4a;
391
- }
394
+ } /* type-specific style */
392
395
 
393
396
  .itags-search-renderedTag--plus {
394
397
  background-color: #ae4a6f;
@@ -408,6 +411,7 @@ For the Markdown editor see Rich Markdown in the [Companion plugins](#companion-
408
411
 
409
412
  | Key | Action |
410
413
  | --- | ------ |
414
+ | Ctrl + Alt + N | Toggle navigation panel |
411
415
  | Ctrl + Shift + T | Toggle search panel |
412
416
  | Ctrl + Shift + I | Focus on search panel (search tag / insert tag) |
413
417
  | Ctrl + Shift + R | Refresh the current note view |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-tag-navigator",
3
- "version": "2.6.0",
3
+ "version": "2.6.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",
@@ -6,7 +6,7 @@
6
6
  "desktop",
7
7
  "mobile"
8
8
  ],
9
- "version": "2.6.0",
9
+ "version": "2.6.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:da81f7c5502ce37d5f2641a1fcf17ae6f0dd5fcc00015581532f4d31400836c0",
28
- "_publish_commit": "main:764250a7171655401ae1c448d772556a391600e8"
27
+ "_publish_hash": "sha256:0bee0b232ec03b8af00aa2e288e601aada5fe83268bcaf9d4b1a45c35297b6d6",
28
+ "_publish_commit": "main:29dde06e37c37ecca4374be871071076ec09dcb3"
29
29
  }