Hi there!
I have a pretty broad questions, so sry for that, but maybe someone can still help me
I am currently struggling a bit with the type content. When working with a show rule like
#show outline.entry: it => {
if ("Adrian" in str(it.element.body)) {
[This is my name]
}
}
I would like to modify the content/body or at least work with it’s value.
Another example would be lists:
#show list: it => {
it.children
}
- some
shows
. Also, the autocomplete shows all the array functions, so I think it is an array. But when I do
#show list: it => {
it.children.at(0)
}
it throws the error “Missing argument: index”
Using .first() instead throws the error “Cannot access fields on type array”.
So at this point, I don’t even know how to get through to the content.
Something similar happened in
this post
description of the problem I am briefly describing in the post
#import "@preview/lilaq:0.1.0" as lq
#show lq.selector(lq.tick-label): it => {
let str_it = to-string(it)
if (str_it == "") {
[#it.children.at(0)]
}
}
#lq.diagram(
lq.plot((-1,3),(-3,1))
)
shows the following plot:
When I comment out the line “[#it.children.at(0)]”, all the numbers disappear, so they have to be in that line. In this case it maybe doesn’t have the type context though, because when I write something like “it.children.at(0).felds()” in that line, it says " Element context has no method felds
". On the other hand, all the auto-complete functions are the ones of content. Regardless, writing “it.children.at(0).fields()” in that line results in this:
So the fields are an empty dict and I have no idea where the content is hiding again…
So I found this github post which includes a function that tries to convert content into a string. This is definitely very helpful and seems to solve my first two examples, but in my last example, the string is just empty (because the field is empty I guess) and I would have no idea what to do.
So I guess the custom to-string function is the best solution I have for now, but I would like to understand how to go through these dicts and thought maybe there is a better alternative
PS: just to be clear: these are no concrete code problems I have, these are just some examples to be able to better describe my general problem with the type content/dics in show rules. Also, I’m open to changes to the title because I’m aware that it’s not really good…