How to use tabulation between variables in domain.yml

I need show several variable with the same space between them. The character \n work ok but doesn’t work with \t, any idea please?

This example doesn’t work because the character \t is show instead of tabulation:

utter_settask_list: - text: “{wpid}\t{state}\t{headline}”

Thanks!

mhm, how about using spaces? :slight_smile:

What I really want to do is a table or structure like a table passing the value from the function validate of a action form.

Drawing the headboard: using dispatcher.utter_template(‘utter_settask_list’, tracker, wpid= “WPID”, state=“STATE”, headline=“HEADLINE”)

Drawing row 1:

dispatcher.utter_template(‘utter_settask_list’, tracker, wpid= “Value1.1”, state=“Value1.2”, headline=“Value1.3”)

Drawing row 2:

dispatcher.utter_template(‘utter_settask_list’, tracker, wpid= “Value2.1”, state=“Value2.2”, headline=“Value2.3”)

In domain.yml: utter_settask_list:

  • text: “{wpid}\t{state}\t{headline}”

But this not work:pensive: