crossnote 0.9.16 → 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 CHANGED
@@ -18,6 +18,9 @@ API Documentation: https://shd101wyy.github.io/crossnote/
18
18
  # If you are using npm
19
19
  $ npm install --save crossnote
20
20
 
21
+ # If you are using pnpm
22
+ $ pnpm add crossnote
23
+
21
24
  # If you are using yarn
22
25
  $ yarn add crossnote
23
26
  ```
@@ -274,6 +277,12 @@ const config = {
274
277
  // Kroki server url.
275
278
  krokiServer: "https://kroki.io",
276
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
+
277
286
  // Always show backlinks in the preview.
278
287
  alwaysShowBacklinksInPreview: false,
279
288
  }
@@ -294,9 +303,9 @@ If your notebook has `.crossnote` directory, then when you run `await Notebook.i
294
303
  ## Development
295
304
 
296
305
  1. Clone this project.
297
- 2. Run `yarn install` from shell.
298
- 3. Run `yarn build:watch` to start the watch mode.
299
- 4. Run `yarn build` to build the project.
306
+ 2. Run `pnpm install` from shell.
307
+ 3. Run `pnpm build:watch` to start the watch mode.
308
+ 4. Run `pnpm build` to build the project.
300
309
 
301
310
  Or
302
311