joplin-plugin-tag-navigator
Advanced tools
Comparing version 1.1.0 to 1.2.0
{ | ||
"name": "joplin-plugin-tag-navigator", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive", |
@@ -9,3 +9,3 @@ { | ||
], | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"name": "Inline Tag Navigator", | ||
@@ -28,4 +28,4 @@ "description": "Type inline #tags in the note editor. View your tagged paragraphs and tasks / TODOs in an advanced search panel, or in a generated note. Convert inline and Obsidian tags into Joplin tags, and vice versa.", | ||
"icons": {}, | ||
"_publish_hash": "sha256:18da22eabc040ca268fa272028b7af02cd7d13c8f8797555a082b56c0f226ec1", | ||
"_publish_commit": "main:c5a7b5c9df471f58d58a5765f7ac2eaad921a396" | ||
"_publish_hash": "sha256:15e2c34a3524ed03d6299f55d93a4ecd350c94e09aa5047a05540d473be83ff1", | ||
"_publish_commit": "main:6053cb7308536efe4c5c8e65afcc501f47aa62f1" | ||
} |
@@ -50,6 +50,10 @@ # ☸️ Inline Tag Navigator | ||
- The definition of a "tag" can be adjusted with user-defined regular expressions. | ||
- For example, every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`. | ||
- Example: Every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`. | ||
- You may also define an exclusion rule to ignore certain tags. | ||
- Example: Numeric (`#123`) or hexanumeric (`#C0FF1E`) tags can be filtered using an exclusion regex such as `#(\d+|[a-fA-F0-9]{6})$`. | ||
- Inline TODOs: | ||
- Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`). | ||
- Add support for [additional tags](https://github.com/CalebJohn/joplin-inline-todo?tab=readme-ov-file#confluence-style) for @mentions, +projects and //due-dates using a custom tag regex such as `(?<=^|\s)([#@+]|\/\/)([^\s#@'\"]*\w)`. | ||
- Furthermore, every checkbox in the text (even ones that are not tagged by any inline #tag) may be defined as a tag using a custom regex such as `(?<=^|\s)([#]|\-\s\[[x\s@\?!~]\])([^\s#'\"]*\w)?`. | ||
- You may then use queries to search for tag-tasks based on their state (`- [ ]`, `- [x]`, `- [@]`, ...). | ||
- Supported additional checkbox styles | ||
@@ -56,0 +60,0 @@ |
Sorry, the diff of this file is not supported yet
396906
106