crossnote 0.8.8 → 0.8.10
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 +4 -0
- package/out/cjs/index.cjs +179 -213
- package/out/dependencies/README.md +1 -9
- package/out/dependencies/reveal/css/reset.css +30 -0
- package/out/dependencies/reveal/css/reveal.css +3 -3
- package/out/dependencies/reveal/js/reveal.js +3 -3
- package/out/dependencies/reveal/plugin/notes/notes.js +1 -147
- package/out/dependencies/reveal/plugin/notes/plugin.js +261 -0
- package/out/dependencies/reveal/plugin/notes/speaker-view.html +891 -0
- package/out/dependencies/reveal/plugin/search/plugin.js +243 -0
- package/out/dependencies/reveal/plugin/search/search.js +7 -206
- package/out/dependencies/reveal/plugin/zoom/plugin.js +264 -0
- package/out/dependencies/reveal/plugin/zoom/zoom.js +11 -0
- package/out/esm/index.mjs +195 -229
- package/out/styles/preview.css +1 -1
- package/out/styles/preview_theme/github-dark.css +1 -1
- package/out/styles/prism_theme/github-dark.css +1 -0
- package/out/styles/style-template.css +1 -1
- package/out/types/src/markdown-engine/index.d.ts +2 -2
- package/out/types/src/notebook/index.d.ts +10 -8
- package/out/types/src/notebook/note.d.ts +2 -1
- package/out/types/src/notebook/types.d.ts +18 -1
- package/out/types/src/webview/backlinks.d.ts +1 -0
- package/out/types/src/webview/components/Backlinks.d.ts +2 -0
- package/out/types/src/webview/components/ContextMenu.d.ts +3 -0
- package/out/types/src/webview/components/Footer.d.ts +2 -0
- package/out/types/src/webview/components/ImageHelper.d.ts +2 -0
- package/out/types/src/webview/components/LoadingIcon.d.ts +2 -0
- package/out/types/src/webview/components/Preview.d.ts +2 -0
- package/out/types/src/webview/components/RefreshingIcon.d.ts +2 -0
- package/out/types/src/webview/components/SidebarToc.d.ts +2 -0
- package/out/types/src/webview/components/Topbar.d.ts +2 -0
- package/out/types/src/webview/containers/preview.d.ts +37 -0
- package/out/types/src/webview/lib/types.d.ts +19 -0
- package/out/types/src/webview/lib/utility.d.ts +2 -0
- package/out/types/src/webview/preview.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/out/webview/backlinks.css +1 -0
- package/out/webview/backlinks.js +43 -0
- package/out/webview/preview.css +1 -0
- package/out/webview/preview.js +84 -0
- package/package.json +28 -4
- package/out/dependencies/jquery/jquery.js +0 -4
- package/out/dependencies/jquery-contextmenu/font/context-menu-icons.eot +0 -0
- package/out/dependencies/jquery-contextmenu/font/context-menu-icons.ttf +0 -0
- package/out/dependencies/jquery-contextmenu/font/context-menu-icons.woff +0 -0
- package/out/dependencies/jquery-contextmenu/font/context-menu-icons.woff2 +0 -0
- package/out/dependencies/jquery-contextmenu/jquery.contextMenu.min.css +0 -16
- package/out/dependencies/jquery-contextmenu/jquery.contextMenu.min.js +0 -2
- package/out/dependencies/jquery-contextmenu/jquery.ui.position.min.js +0 -6
- package/out/dependencies/jquery-modal/jquery.modal.min.css +0 -1
- package/out/dependencies/jquery-modal/jquery.modal.min.js +0 -5
- package/out/dependencies/reveal/plugin/highlight/highlight.js +0 -77
- package/out/dependencies/reveal/plugin/markdown/example.html +0 -136
- package/out/dependencies/reveal/plugin/markdown/example.md +0 -36
- package/out/dependencies/reveal/plugin/markdown/markdown.js +0 -412
- package/out/dependencies/reveal/plugin/markdown/marked.js +0 -6
- package/out/dependencies/reveal/plugin/math/math.js +0 -67
- package/out/styles/loading.css +0 -1
- package/out/types/src/webview/webview.d.ts +0 -1
- package/out/webview/index.js +0 -22
package/README.md
CHANGED
|
@@ -132,6 +132,7 @@ const config = {
|
|
|
132
132
|
// "dark.css",
|
|
133
133
|
// "funky.css",
|
|
134
134
|
// "github.css",
|
|
135
|
+
// "github-dark.css"
|
|
135
136
|
// "hopscotch.css",
|
|
136
137
|
// "monokai.css",
|
|
137
138
|
// "okaidia.css",
|
|
@@ -256,6 +257,9 @@ const config = {
|
|
|
256
257
|
|
|
257
258
|
// Kroki server url.
|
|
258
259
|
krokiServer: "https://kroki.io",
|
|
260
|
+
|
|
261
|
+
// Always show backlinks in the preview.
|
|
262
|
+
alwaysShowBacklinksInPreview: false,
|
|
259
263
|
}
|
|
260
264
|
```
|
|
261
265
|
|