You can combine multiple selectors with .or() and .and() as per the docs. In your case this would look like this
#show raw.where(lang: "a").or(raw.where(lang: "b")).or(raw.where(lang: "c")): it => { ... }
I’m not sure if there is a way to generate the show rule programmatically, e.g. from a list of languages.
You could also take another approach by using a general show rule and then checking the language inside the show rule. This will certainly scale better and you will have more flexibility regarding the matching.
#show raw: it => {
if it.lang == "some condition" {
do something...
}
it
}
I’m very well aware that function execution and so on is something that will not be supported but I had the hopes that there still might be something that makes it a bit shorter.
@sijo could you tell me why the title was an issue so that I can watch out for it in the future?