Aaron Kaw

Results 73 comments of Aaron Kaw

So, in the REPL: ``` julia> using AbstractTrees julia> abstract type MyType end julia> struct A abstract type B struct C # May need `using InteractiveUtils` julia> AbstractTrees.children(::Type{T}) where {T...

Ah, good question. I didn't think to test on something defined by Julia first. So, `subtypes` in Jlyfish works on `Real` but not on `MyType` ``` #jl(code: true, ``` subtypes(Real)...

Okay so, that's my fault of irrelevance because since Jlyfish in Typst has one large shared scope between the code blocks, I just `using` all my packages at the start...

Hi all. If I've understood correctly, a fix has been found? I've tried disabling `markdown.math.enabled` and `markdown.extension.math.enabled`, but my HTML outputs still don't render some symbols properly. F12 in the...

I've made a mistake, I've been confusing [Markdown+Math] rendering with this extension, and have been previewing my KaTeX renders in VSCode without issues, but have been using this extension's HTML...

Will this be tied in tied in with JLD2 support?

There isn't an easy way to update a JLD2 file for an updated type, is there? Can't load multiple versions of the same package to convert old file → old...

Oh I see. I'll check out `refdims` then. > This makes me think `refdims` should also be table columns Are you saying it doesn't implement the Tables.jl interface so it...

> We could even add a DimNestedArray object that holds other DimArray/DimStack that updates `refdims` automatically on indexing? One thing `DimNestedArray` would do differently/on top of normal `DimArray/DimStack` is that...

I've tinkered around a little, and I'm not sure how to use it. In my example above, for the definitions of `dimprofile`, `dimslice`, and `dimenvironment`, I wrap the `DimArray` in...