ink icon indicating copy to clipboard operation
ink copied to clipboard

Choice Label + Newline + Condition doesn't work

Open wldmr opened this issue 6 months ago • 0 comments

v1.2.0 made it possible to add a linebreak after the choice label, but that seems to break choice conditions (I think).

Current Output

* (label)
  {true} choice text

outputs

1: true choice text

Expected Output

I think it should be

1: choice text

i.e. the same as if I'd written

* (label) {true} choice text

NB. Linebreaks seem to work between conditions, so

* (label) {true}
  {true} choice text

gives the expected output above. I guess that's kind of a workaround, but it would be nice if that wasn't necessary.

wldmr avatar Aug 01 '24 15:08 wldmr