joplin-plugin-tag-navigator 2.3.0 → 2.3.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
|
@@ -152,11 +152,12 @@ These tags will be accessible in the search panel / notes / tables like standard
|
|
|
152
152
|
|
|
153
153
|
### Table views
|
|
154
154
|
|
|
155
|
+
- To enable table view, start by [saving a query](#saved-search-queries). Next, select `Tools --> Tag Navigator --> Toggle search results display in note` (or the corresponding toolbar button) until the saved query shows the property `"displayInNote": "table"` and a table appears.
|
|
155
156
|
- Quickly add new entries to the table by clicking on `New table entry note` in the context menu, toolbar, or Tag Navigator menu.
|
|
156
|
-
- The new note will contain a front matter template with properties for each column.
|
|
157
|
+
- The new note will contain a [front matter](#front-matter-tags) template with properties for each column.
|
|
157
158
|
- Tables can be customised using the following settings:
|
|
158
159
|
- `Note view: Table view columns`: Set the default number of columns (most common ones) to display in the table view.
|
|
159
|
-
- `
|
|
160
|
+
- `Search: Extract the full notebook path`: Enable this to display the notebook path in the table view, and to allow [filtering results](#filtering-results) by this path.
|
|
160
161
|
- `Note view: Note view: Tag case in table view`: Set to "Title Case" / "lowercase".
|
|
161
162
|
- Tables can be customised per note using the saved query, by adding an `options` field with any of the following properties:
|
|
162
163
|
- `includeCols`
|
|
@@ -168,7 +169,7 @@ These tags will be accessible in the search panel / notes / tables like standard
|
|
|
168
169
|
- a comma-separated list of columns to sort the table by
|
|
169
170
|
- `sortOrder`
|
|
170
171
|
- a comma-separated list of the words "ascending" / "descending" (or "desc", "descend", etc.) corresponding to the columns in the `sortBy` field
|
|
171
|
-
-
|
|
172
|
+
- Example for a saved query:
|
|
172
173
|
|
|
173
174
|
```json
|
|
174
175
|
{
|
|
@@ -196,7 +197,7 @@ These tags will be accessible in the search panel / notes / tables like standard
|
|
|
196
197
|
- Text entered in the results filter (on the panel or in a saved query) can be used to search within title of the notes, their notebook name / path, or the content of the displayed results.
|
|
197
198
|
- To gain more control over filtering by notebook, you may enable the setting `Search: Extract the full notebook path`.
|
|
198
199
|
- Example: Limit results to a notebook that appears in the top level by searching for `|/topNotebook`.
|
|
199
|
-
- Example: Search for `topNotebook/childNotebook` to show only
|
|
200
|
+
- Example: Search for `topNotebook/childNotebook` to show only results from childNotebook.
|
|
200
201
|
- You may enable `Search: Use regex for tag / note / content filtering` to filter using regular expressions.
|
|
201
202
|
|
|
202
203
|
### Inline TODOs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.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",
|
|
Binary file
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"desktop",
|
|
7
7
|
"mobile"
|
|
8
8
|
],
|
|
9
|
-
"version": "2.3.
|
|
9
|
+
"version": "2.3.2",
|
|
10
10
|
"name": "Inline Tag Navigator",
|
|
11
11
|
"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.",
|
|
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:06da49030ecbe988cce635a5728da05abdfdc0d73b363d3bfc62970ac6adae23",
|
|
28
|
+
"_publish_commit": "main:62b94ade246e06a9682dfcf17b0ba74be34e9cf7"
|
|
29
29
|
}
|