joplin-plugin-heading-navigator 0.4.0 → 0.4.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
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
A Joplin plugin that provides a simple overlay panel allowing you to navigate and filter headings in the markdown editor, inspired by sublime text's "go to symbol" function.
|
|
7
7
|
|
|
8
|
-

|
|
9
|
+
|
|
9
10
|
|
|
10
11
|
> [!important]
|
|
11
12
|
> This plugin only works in the markdown editor (editor view or split view). It does not work in the reading view or in the rich text editor. Codemirror 6 only, legacy editor is not supported.
|
|
@@ -27,6 +28,7 @@ You can filter the list of headings using the search filter at the top of the pa
|
|
|
27
28
|
|
|
28
29
|
- Navigate through headings with the keyboard
|
|
29
30
|
- Search filter to filter list of headings
|
|
31
|
+
- Copy link to heading
|
|
30
32
|
- Panel adapts to your Joplin theme
|
|
31
33
|
- Adjustable panel size
|
|
32
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-heading-navigator",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.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",
|
|
@@ -21,18 +21,18 @@
|
|
|
21
21
|
],
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@eslint/eslintrc": "^3.3.1",
|
|
24
|
-
"@eslint/js": "^9.39.
|
|
24
|
+
"@eslint/js": "^9.39.1",
|
|
25
25
|
"@types/jest": "^30.0.0",
|
|
26
|
-
"@types/node": "^24.
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "^8.46.
|
|
28
|
-
"@typescript-eslint/parser": "^8.46.
|
|
26
|
+
"@types/node": "^24.10.0",
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
28
|
+
"@typescript-eslint/parser": "^8.46.3",
|
|
29
29
|
"@codemirror/state": "6.5.2",
|
|
30
30
|
"@codemirror/view": "6.38.6",
|
|
31
|
-
"@lezer/markdown": "1.
|
|
31
|
+
"@lezer/markdown": "1.6.0",
|
|
32
32
|
"@joplin/utils": "^3.5.1",
|
|
33
33
|
"chalk": "^4.1.0",
|
|
34
34
|
"copy-webpack-plugin": "^13.0.1",
|
|
35
|
-
"eslint": "^9.39.
|
|
35
|
+
"eslint": "^9.39.1",
|
|
36
36
|
"eslint-config-prettier": "^10.1.8",
|
|
37
37
|
"eslint-plugin-prettier": "^5.5.4",
|
|
38
38
|
"fs-extra": "^10.1.0",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.heading-navigator",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "0.4.
|
|
5
|
+
"version": "0.4.2",
|
|
6
6
|
"name": "Heading Navigator",
|
|
7
7
|
"description": "Overlay panel to navigate through headings in the markdown editor using the keyboard",
|
|
8
8
|
"author": "bwat47",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"type": "codeMirrorPlugin"
|
|
49
49
|
}
|
|
50
50
|
],
|
|
51
|
-
"_publish_hash": "sha256:
|
|
52
|
-
"_publish_commit": "main:
|
|
51
|
+
"_publish_hash": "sha256:f0dc7d88d04d89b5d338e8443badbb913e78f4296990f04835fda74739fe486e",
|
|
52
|
+
"_publish_commit": "main:fe70735906e49f5b005d0274107e589673e6a389"
|
|
53
53
|
}
|