Replies: 1 comment 3 replies
-
Yep! You can just write out the markdown and add the fields. Here is a query that returns ten pages modified since the start of the month. The template just has normal markdown with the Handlebars tokens in it to display data where you want. ```qatt
query: |
SELECT TOP 10
basename, path, moment(stat->mtime).format() as LastModified
from obsidian_markdown_notes
where moment(stat->mtime)->isAfter(moment().startOf('month'))
template: |
| Name | Path | Last Modified |
| --- | --- | ---|
{{#each result}}
| {{basename}} | {{path}} | {{LastModified}} |
{{/each}}
``` |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Is there any way to output a Markdown table?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions