crossnote 0.8.15 → 0.8.17
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 +5 -0
- package/out/cjs/index.cjs +168 -151
- package/out/dependencies/README.md +1 -1
- package/out/dependencies/mermaid/mermaid.min.js +198 -199
- package/out/esm/index.mjs +165 -148
- package/out/styles/preview.css +1 -1
- package/out/styles/preview_theme/atom-dark.css +1 -1
- package/out/styles/preview_theme/atom-light.css +1 -1
- package/out/styles/preview_theme/atom-material.css +1 -1
- package/out/styles/preview_theme/github-dark.css +1 -1
- package/out/styles/preview_theme/github-light.css +1 -1
- package/out/styles/preview_theme/gothic.css +1 -1
- package/out/styles/preview_theme/medium.css +1 -1
- package/out/styles/preview_theme/monokai.css +1 -1
- package/out/styles/preview_theme/newsprint.css +1 -1
- package/out/styles/preview_theme/night.css +1 -1
- package/out/styles/preview_theme/one-dark.css +1 -1
- package/out/styles/preview_theme/one-light.css +1 -1
- package/out/styles/preview_theme/solarized-dark.css +1 -1
- package/out/styles/preview_theme/solarized-light.css +1 -1
- package/out/styles/preview_theme/vue.css +1 -1
- package/out/styles/prism_theme/github-dark.css +1 -1
- package/out/styles/style-template.css +1 -1
- package/out/types/src/custom-markdown-it-features/curly-bracket-attributes.d.ts +3 -0
- package/out/types/src/index.d.ts +1 -0
- package/out/types/src/markdown-engine/index.d.ts +1 -0
- package/out/types/src/notebook/index.d.ts +2 -2
- package/out/types/src/notebook/types.d.ts +5 -0
- package/out/types/src/render-enhancers/resolved-image-paths.d.ts +1 -1
- package/out/types/src/utility.d.ts +2 -1
- package/out/types/src/webview/components/FloatingActions.d.ts +2 -0
- package/out/types/src/webview/components/MarkdownEditor.d.ts +2 -0
- package/out/types/src/webview/containers/preview.d.ts +7 -0
- package/out/types/test/markdown/transformer.test.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/out/webview/backlinks.css +1 -1
- package/out/webview/backlinks.js +8 -8
- package/out/webview/preview.css +1 -1
- package/out/webview/preview.js +2440 -11
- package/package.json +15 -8
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ This library powers:
|
|
|
10
10
|
|
|
11
11
|
- [markdown preview enhanced for vscode](https://github.com/shd101wyy/vscode-markdown-preview-enhanced)
|
|
12
12
|
|
|
13
|
+
API Documentation: https://shd101wyy.github.io/crossnote/
|
|
14
|
+
|
|
13
15
|
## Installation
|
|
14
16
|
|
|
15
17
|
```sh
|
|
@@ -73,6 +75,8 @@ main();
|
|
|
73
75
|
|
|
74
76
|
## Notebook Configuration
|
|
75
77
|
|
|
78
|
+
[Visit here to see the documentation.](https://shd101wyy.github.io/crossnote/interfaces/NotebookConfig.html)
|
|
79
|
+
|
|
76
80
|
```js
|
|
77
81
|
const config = {
|
|
78
82
|
// File of extensions to be included in the notebook
|
|
@@ -274,6 +278,7 @@ If your notebook has `.crossnote` directory, then when you run `await Notebook.i
|
|
|
274
278
|
```
|
|
275
279
|
.crossnote
|
|
276
280
|
├── config.js
|
|
281
|
+
├── head.html
|
|
277
282
|
├── parser.js
|
|
278
283
|
└── style.less
|
|
279
284
|
```
|