joplin-plugin-tag-navigator 0.1.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
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Inline Tag Navigator
|
|
2
|
+
|
|
3
|
+
This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://joplinapp.org) in two ways:
|
|
4
|
+
|
|
5
|
+
- It can convert your existing inline tags to native Joplin tags
|
|
6
|
+
- It adds a panel for navigating between inline tags that appear in the current note
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
## Companion plugins
|
|
11
|
+
|
|
12
|
+
- The excellent [Inline Tags](https://github.com/roman-r-m/joplin-inline-tags-plugin) plugin can help you add tags on the fly
|
|
13
|
+
- I created a fork for the [Rich Markdown](https://github.com/alondmnt/joplin-rich-markdown) plugin and updated the "Stylish" style to highlight inline tags in notes ([download](https://github.com/alondmnt/joplin-rich-markdown/releases/download/cm-rm-tag/plugin.calebjohn.rich-markdown.jpl))
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "joplin-plugin-tag-navigator",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
|
+
"prepare": "npm run dist",
|
|
7
|
+
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
|
|
8
|
+
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"joplin-plugin"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
"publish"
|
|
16
|
+
],
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@types/node": "^18.7.13",
|
|
19
|
+
"chalk": "^4.1.0",
|
|
20
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
21
|
+
"fs-extra": "^10.1.0",
|
|
22
|
+
"glob": "^8.0.3",
|
|
23
|
+
"tar": "^6.1.11",
|
|
24
|
+
"ts-loader": "^9.3.1",
|
|
25
|
+
"typescript": "^4.8.2",
|
|
26
|
+
"webpack": "^5.74.0",
|
|
27
|
+
"webpack-cli": "^4.10.0",
|
|
28
|
+
"@joplin/lib": "~2.9"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": 1,
|
|
3
|
+
"id": "joplin.plugin.alondmnt.tag-navigator",
|
|
4
|
+
"app_min_version": "2.10",
|
|
5
|
+
"version": "0.1.0",
|
|
6
|
+
"name": "Inline Tag Navigator",
|
|
7
|
+
"description": "Convert inline tags to native joplin tags, or navigate between tags using a dedicated panel.",
|
|
8
|
+
"author": "Alon Diament",
|
|
9
|
+
"homepage_url": "https://github.com/alondmnt/joplin-plugin-tag-navigator#readme",
|
|
10
|
+
"repository_url": "https://github.com/alondmnt/joplin-plugin-tag-navigator",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"editor",
|
|
13
|
+
"tags"
|
|
14
|
+
],
|
|
15
|
+
"categories": [
|
|
16
|
+
"tags"
|
|
17
|
+
],
|
|
18
|
+
"screenshots": [],
|
|
19
|
+
"icons": {},
|
|
20
|
+
"_publish_hash": "sha256:62d4135059a854ff9912aaf29c8b5a9fc8611d5514be2dff115735b30742708c",
|
|
21
|
+
"_publish_commit": "main:e44b529a4deb7f08807e7326132244c6b7ec4ac7"
|
|
22
|
+
}
|