Hi everyone,
You can I evaluate a string into typst code?
#let my_string = "text here and here with a #link(\"url\")"
// error
#eval(my_string)
// not what I want
#eval(my_string, mode: "markup")
// what I want
text here and here with a #link("url")
Thanks