Hey everyone! Quick update:
the plugin now supports inline queries and a short-hand syntax, making it easier to include live Beancount values directly inside your notes.
You can now do things like:
My worth is `bql:SELECT convert(sum(position), 'INR') WHERE account ~ '^Assets' and currency ~'INR'`.
or use a shorthand version:
My worth is `bql-sh:WORTH`.
And here’s how it looks in action
This makes it really easy to reference financial values inline like Dataview’s inline fields, but powered by your Beancount data.
Here is how you can define the short hands in a template file.
## WORTH: My worth (a short description)
```bql-shorthand
SELECT convert(sum(position), 'INR') WHERE account ~ '^Assets' and currency ~'INR'
