crossnote 0.8.14 → 0.8.16
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 +85 -65
- package/out/esm/index.mjs +81 -61
- 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/monokai.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/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 +1 -0
- package/out/types/src/webview/containers/preview.d.ts +1 -1
- 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 +8 -8
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -78,6 +78,10 @@ const config = {
|
|
|
78
78
|
// File of extensions to be included in the notebook
|
|
79
79
|
markdownFileExtensions: [".md", ".markdown", ".mdown", ".mkdn", ".mkd", ".rmd", ".qmd"],
|
|
80
80
|
|
|
81
|
+
// The content to be included in HTML `<head>` tag.
|
|
82
|
+
// This is useful for adding custom styles or scripts.
|
|
83
|
+
includeInHeader: "",
|
|
84
|
+
|
|
81
85
|
// Enable this option will render markdown by pandoc instead of markdown-it.
|
|
82
86
|
usePandocParser: false,
|
|
83
87
|
|
|
@@ -270,6 +274,7 @@ If your notebook has `.crossnote` directory, then when you run `await Notebook.i
|
|
|
270
274
|
```
|
|
271
275
|
.crossnote
|
|
272
276
|
├── config.js
|
|
277
|
+
├── head.html
|
|
273
278
|
├── parser.js
|
|
274
279
|
└── style.less
|
|
275
280
|
```
|