crossnote 0.9.17 → 0.9.18
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 +6 -0
- package/out/cjs/index.cjs +31 -31
- package/out/esm/index.mjs +87 -87
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -277,6 +277,12 @@ const config = {
|
|
|
277
277
|
// Kroki server url.
|
|
278
278
|
krokiServer: "https://kroki.io",
|
|
279
279
|
|
|
280
|
+
// The WebSequenceDiagrams server URL.
|
|
281
|
+
webSequenceDiagramsServer: "https://www.websequencediagrams.com";
|
|
282
|
+
|
|
283
|
+
// API key for WebSequenceDiagrams. Required for wider diagram sizes.
|
|
284
|
+
webSequenceDiagramsApiKey: "";
|
|
285
|
+
|
|
280
286
|
// Always show backlinks in the preview.
|
|
281
287
|
alwaysShowBacklinksInPreview: false,
|
|
282
288
|
}
|