Spaces in Dynamic Tags?

  • Posted 3 weeks ago

I am trying to add spaces in dynamic tags but it seems to strip out all spaces before and after the text inside parentheses. How can I prevent this? Here is an example which results in everything just being a run on which no spaces after the commas:

@post(curiosity-level).is_less_than(3).then(I like to stick to things I know).else(@post(curiosity-level).is_equal_to(3).then(I like to try new things every once in a while).else(@post(curiosity-level).is_greater_than(3).then(I love to try new things))),

@post(spontaneity-level).is_less_than(3).then( prefer having a plan).else(@post(spontaneity-level).is_equal_to(3).then( can be flexible when needed).else(@post(spontaneity-level).is_greater_than(3).then( thrive on last-minute adventures))),

@post(extraversion-level).is_less_than(3).then( keep it low-key).else(@post(extraversion-level).is_equal_to(3).then( balance quiet chats and lively crowds).else(@post(extraversion-level).is_greater_than(3).then( get energy from big groups))),

Here is what the above outputs: I love to try new things,prefer having a plan,keep it low-key,keep things light, etc….