From e0f42120e9445d1cd6235f398bfaf4366e38d276 Mon Sep 17 00:00:00 2001 From: Mike DiDomizio Date: Sat, 7 Mar 2026 13:02:06 -0500 Subject: [PATCH] docs: clarify isDesktopOnly means only runs on desktop --- en/Reference/Manifest.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en/Reference/Manifest.md b/en/Reference/Manifest.md index eeac634a..ce9269ba 100644 --- a/en/Reference/Manifest.md +++ b/en/Reference/Manifest.md @@ -21,11 +21,11 @@ The following properties are available for both plugins and themes. The following properties are only available to plugins. -| Property | Type | Required | Description | -| --------------- | --------- | -------- | ------------------------------------------------------- | -| `description` | `string` | **Yes** | A description of your plugin. | +| Property | Type | Required | Description | +| --------------- | --------- | -------- | ------------------------------------------------------ | +| `description` | `string` | **Yes** | A description of your plugin. | | `id` | `string` | **Yes** | The ID of your plugin. The ID can't contain `obsidian`. | -| `isDesktopOnly` | `boolean` | **Yes** | Whether your plugin uses NodeJS or Electron APIs. | +| `isDesktopOnly` | `boolean` | **Yes** | Whether the plugin can be used only on desktop. | > [!note] > For local development, the `id` should match the plugin's folder name; otherwise some methods, such as `onExternalSettingsChange`, won't be called.