Is it possible to import labels in modules? I am trying to query a label that exists in another file, but the label doesn’t exist in the context.
import "other_file.typ": *
#context query(<mylabel>).first() // says array is empty
In other_file.typ:
$1+1=2$<mylabel>
I know I can use let-bindings instead of labels, but I’m wondering if this is possible, and if not, what the reason might be.