Skip to content

Commit ad47f80

Browse files
committed
Fix broken link
1 parent 152445b commit ad47f80

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/getting-started/create-your-first-plugin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This guide walks you through the steps needed to develop a plugin for Obsidian.
99
> 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).
1010
1111
:::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**.
1313
:::
1414

1515
## Prerequisites
@@ -70,8 +70,8 @@ The plugin manifest, `manifest.json` is a file that contains information about y
7070

7171
1. Open the `obsidian-instant-coffee` directory that has been created, in a code editor, such as [Visual Studio Code](https://code.visualstudio.com/).
7272
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`.
7575
1. If you'd like, then update `description`, `author`, and `authorUrl` as well.
7676

7777
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.
File renamed without changes.

0 commit comments

Comments
 (0)