Michael "Tres" Brenan

Results 196 comments of Michael "Tres" Brenan

Dataview will actually parse the tags correctly in this case, but the query parser doesn't understand the '.' specifically. This seems a little hard to fix in general, especially if...

Yes, that's possible. I'm wondering what the most convienent syntax would be - probably just the markdown link syntax (![]...), as you suggest?

Obsidian has improved this a bit - I think to truly get good logs, I need to find an alternative JS execution library that is better than plain `eval`. Maybe...

How frequently did this refresh in 0.4.26 in comparison? What is the refresh interval set to in the settings?

For a simple fix for right now I recommend upping the refresh interval to 2500 or 5000; this doesn't fix the root problem, but will make it a little less...

I think recent performance improvements should make the flickering much less apparent in DataviewJS rendering; it may still flicker but should render nearly instantly. The `dv.page()` API was much slower...

Making it truly "flickerless" requires a different way to render DataviewJS views which I need to think about more, using React.

If you have time, can you take a performance profile (using developer tools > Performance) of you typing and the view flickering? It would help to figure out what is...

So you are looking for a table view where each datarow is rendered as an additional column, instead of an additional row? This is probably possible, it is mostly a...

It's worth noting you can skip a step - dataview allows loading from CSV files via `FROM csv(...)` or `await dv.io.csv(...)`.