Michael "Tres" Brenan

Results 196 comments of Michael "Tres" Brenan

I am working on dataview export functionality currently that replaces dataview blocks with markdown equivalents, so that may help in this context.

At a high level, the export functionality will support: 1. A simple user UI for converting specific views or ALL views to plain Markdown. 2. A programmatic API for converting...

It was indeed easier to do per-task matching then to traverse the tags array for positions. Will see if I can swap to using the Obsidian cache instead.

The two queries are the same - I think you may have accidentally copy-pasted the same one twice. The following query works for me to obtain both desired behaviors: ```sql...

Ah, the reason your second query is due to a bad Dataview interaction with how GROUP BY works - it makes a variable literally called `"file.tags"`, which you have to...

This mostly appears to be a UX problem with GROUP BY doing something stupid with variables with dots in them. I may be able to fix the behavior.

This is due to how inline fields are parsed rather than an issue with `FLATTEN` - something like `Quote:: Quoth the raven, he is dead` is ambigious in that it...

Thanks! I'll probably be documenting `TABLE WITHOUT ID`, `dateformat` (and date support), and other time related things to start. I've gotten really ahead of myself in terms of features to...

Interesting - I guess the page renderer must have broken and the refresh is not going through.

You want to list all pages which have `due` field somewhere, including in the tasks? Maybe something like ```sql TABLE WHERE (due - date(now) = dur(1 days)) OR any(map(file.tasks, (t)...