-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Extended integration #17
Comments
Hi @abraverm, I remember the plugin uses the block types defined in the config, if you add a 'jira' entry in the config, then 'jira' blocks will be recognized to be run as configured in the config. Regarding being part of the plugin, and if you are into JIRA, I would definitely recommend looking into the https://github.com/marc0l92/obsidian-jira-issue plugin and look if your functionality could be added there! Cheers. |
Hi @cristianvasquez, I'm not intrested in a Jira specific solution, also that plugin focus seems to be only on retrieving information. If you are not intrested in this diraction, that is fine and feel free to close the this issue. |
Hi @abraverm, I don't want to close the issue because it's interesting what you describe there. As I understand it you want to mark parts of the markdown with something recognizable like this:
And use all the bullets hanging from that node to be processed by some program. I don't see it as a bad idea. Do you usually describe things using bullets (like logseq)? I'm asking, because I'm searching for ways to describe semi-structured data in markdown in a non-invasive way, for other use-cases |
I overview my work with bullets and have independed notes for a more detailed work.
In this example, I would have another note "this awesome idea" where I would write something that is more like a blog post. Currently I'm using Obsidian tasks plugin to find what I should/can be working on. Directories and notes help me seperate different topics. But Obsidian doesn't enforce me to keep one part in bullets or in a "free form", so often I have tasks that are inside the free form notes. The snippets plugin reminded me a little bit of Jupyter notebook, so I thought it would be nice to do the same thing but for daily work, like my use case with Jira. I think this could have other cases of integration, for example if you wish to maintain a document with a public version, so you can mark what sections (blocks) in the document are private and how to treat the public version. In my work I use Confluence pages, and markdown integration is a pain, I want to push parts of the document and update them. However Confluence has a different format for pages and making this entire process work with some special plugin doesn't worth my time. |
This is a great plugin, and I think it can be the baseline for a generic integration with external tools.
TL;DR
Make the snippet plugin work for any block. Use regex to identify which template to use. Allow interaction with current block and/or child blocks.
My use case - Jira integration
Having the tickets content within my notes and to be able to update tickets through Obsidian. If the snippet plugin would support the features above, then this integration would be rather simple:
- [ ] {{template:jira, id:JIRA-1234}}
.Features/Requirements:
{{ .... }}
aboveI can implement this functionality, but can it be part of this plugin?
The text was updated successfully, but these errors were encountered: