This commit is contained in:
Pieter Vander Vennet 2022-07-28 09:16:19 +02:00
parent 32e0c18b09
commit 181c5583d2
5 changed files with 51 additions and 19 deletions

View file

@ -469,6 +469,8 @@ export class RewriteSpecial extends DesugaringStep<TagRenderingConfigJson> {
.replace(/\{/g, "&LBRACE")
.replace(/}/g, "&RBRACE")
args.push(txt)
} else if(typeof v === "object"){
args.push(JSON.stringify(v))
} else {
args.push(v)
}