Provide core features and API for folder notes.
- create folder note easily, with multiple preferences and template support
- folder and folder note working as one
- folder and linked note synced as one: change folder name from folder note; folder note moves with your folder
- delete folder within folder note
 
This plugin aimed to provide the following basic features for folder note:
- commands and options in context menu for delete/create folder note
- sync folder and folder note names and location
For advanced feature such as file explorer patches and folder overviews, install this plugin with alx-folder-note v0.11.0+
- run npm i -D @aidenlx/folder-note-corein your plugin dir
- import the api (add import { getApi, isPluginEnabled, registerApi } from "@aidenlx/folder-note-core")
- use api
- check if enabled: isPluginEnabled(YourPluginInstance)
- access api: getApi()/getApi(YourPluginInstance)
- use api when it's ready: registerApi(YourPluginInstance, (api)=>{// do something })
- bind to events: YourPluginInstance.registerEvent(YourPluginInstance.app.vault.on("folder-note:...",(...)=>{...}))
 
- check if enabled: 
The required API feature is only available for Obsidian v0.13.24+.
- Open Settings>Third-party plugin
- Make sure Safe mode is off
- Click Browse community plugins
- Search for this plugin
- Click Install
- Once installed, close the community plugins window and the patch is ready to use.
- Download the Latest Release from the Releases section of the GitHub Repository
- Put files to your vault's plugins folder: <vault>/.obsidian/plugins/folder-note-core
- Reload Obsidian
- If prompted about Safe Mode, you can disable safe mode and enable the plugin. Otherwise, head to Settings, third-party plugins, make sure safe mode is off and enable the plugin from there.
Note: The
.obsidianfolder may be hidden. On macOS, you should be able to pressCommand+Shift+Dotto show the folder in Finder.