I am using the plugin: obsidian-html-server, which has custom parameter configuration.
When developing other plugins, can I access the parameters defined by obsidian-html-server?
Can I retrieve configuration parameters from obsidian-html-server, such as the port number?
Generally, a plugin instance will have a settings field (or other configuration objects). You can directly obtain the plugin instance by using app.plugins.getPlugin('other-plugin-id') to access its state and settings.
app.plugins.getPlugin('other-plugin-id')
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.