Hi all,
Is there a way to hide the commends of a keyboard behind friendly text like it is possible in inline_keyboard?
Here is an example:
action:
- service: notify.telegram
data:
message: 'commands'
data:
keyboard:
- '/ping, /alarm'
- '/siren'
When using an inline keyboard, the following can be done to hide the command behind friendly text:
keyboard:
- 'Ping:/ping, Alarm:/alarm'
- 'Siren:/siren'
Also, I could not figure out how to apply the one_time_keyboard option so that the keyboard disappears when clicked, does anyone know how to do this?
Thanks!