What is the correct way to pass a vector to parameters in Quarto? I want to pass a vector as a parameter in a Quarto doc like this:
params:
state_county: !expr c("42095", "42017", "48453", "09003")
I think the code successfully renders but the "Background Jobs" pain throws the following error:
ERROR: YAMLError: unknown tag !<!r> at line 17, column 57:
... 019", "20045", "19103", "47093")
^
This was easy in R Markdown with the following:
params:
state_county: !r c("42095", "42017", "48453", "09003")
The Quarto documentation only shows examples with vectors with length 1. This GitHub issue appeared relevant but validate-yaml
did not help.