We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ref: https://forum.obsidian.md/t/inter-plugin-communication-expose-api-to-other-plugins/23618
Right now the only way to use this plugin is via the command palette.
It would be nice if we could expose the API so that we can call it from elsewhere.
E.g. I have a Templater snippet where I get youtube video information and at the end, I want to invoke the summarizer.
<%* let url = await tp.system.clipboard(); var ys = app.plugins.plugins['youtube-summarizer']; console.log("youtube-summarizer-plugin", ys) const summary = ys.api.summarize(url) %> ### Summary <% summary %>
Aside from my example, this would open up more usage opportunities across other plugins.
The text was updated successfully, but these errors were encountered:
Did you make it working? How?
Sorry, something went wrong.
No branches or pull requests
ref: https://forum.obsidian.md/t/inter-plugin-communication-expose-api-to-other-plugins/23618
Right now the only way to use this plugin is via the command palette.
It would be nice if we could expose the API so that we can call it from elsewhere.
E.g. I have a Templater snippet where I get youtube video information and at the end, I want to invoke the summarizer.
Aside from my example, this would open up more usage opportunities across other plugins.
The text was updated successfully, but these errors were encountered: