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 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
  ```