You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/create-your-first-plugin.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ This guide walks you through the steps needed to develop a plugin for Obsidian.
9
9
> If you prefer a video walkthrough, check out [Create Your Own Obsidian Plugin](https://www.youtube.com/watch?v=9lA-jaMNS0k) by [Antone Heyward](https://www.youtube.com/channel/UC9w43btR2UUsfR6ZUf3AlqQ).
10
10
11
11
:::warning Before you start
12
-
**Don't develop plugins in your main vault.** When you develop a plugin, one simple mistake can lead to unintentional modifications to your vault. You also risk **permanently deleting your vault**.
12
+
**Don't develop plugins in your main vault.** When you develop a plugin, one mistake can lead to unintentional modifications to your vault. You also risk **permanently deleting your vault**.
13
13
:::
14
14
15
15
## Prerequisites
@@ -70,8 +70,8 @@ The plugin manifest, `manifest.json` is a file that contains information about y
70
70
71
71
1. Open the `obsidian-instant-coffee` directory that has been created, in a code editor, such as [Visual Studio Code](https://code.visualstudio.com/).
72
72
1. Open `manifest.json` in your editor.
73
-
1. Change `id` to your plugin ID, e.g.`obsidian-instant-coffee`.
74
-
1. Change `name` to the human-friendly name of the plugin, e.g.`Instant coffee`.
73
+
1. Change `id` to your plugin ID, for example`obsidian-instant-coffee`.
74
+
1. Change `name` to the human-friendly name of the plugin, for example`Instant coffee`.
75
75
1. If you'd like, then update `description`, `author`, and `authorUrl` as well.
76
76
77
77
A plugin is an NodeJS package, which is configured in the `package.json`. You shouldn't need to worry much about it for now. For now, only update it to match the properties in the plugin manifest.
0 commit comments