From 5a0a5712dd17b82cff3bea01615aad29287918ac Mon Sep 17 00:00:00 2001 From: "Kay Marquardt (Gnadelwartz)" Date: Wed, 27 Jan 2021 07:54:28 +0100 Subject: [PATCH] doc: more button examples --- doc/6_reference.md | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/doc/6_reference.md b/doc/6_reference.md index 3670eb0..509eb4c 100644 --- a/doc/6_reference.md +++ b/doc/6_reference.md @@ -251,11 +251,31 @@ If `"url"` without text is given, `url` is shown on the button and opened on but # one button, same as send_button send_inline_keyboard "${CHAT[ID]}" "Best Dealz!" "Visit my Shop|https://dealz.rrr.de" +# result + Best Dealz! + +----------------------------+ + | Visit my Shop | + +----------------------------+ + # one button row -send_inline_keyboard "${CHAT[ID]}" "message" "button 1|http://rrr.de" "button 2|http://rrr.de" +send_inline_keyboard "${CHAT[ID]}" "message" "Button 1|http://rrr.de" "Button 2|http://rrr.de" + +# result + message ... + +----------------------------+ + | Button 1 | Button 2 | + +----------------------------+ # multiple button rows -send_inline_keyboard "${CHAT[ID]}" "message" "b1|http://rrr.de" "b2|http://rrr.de" "" "b3|http://rrr.de" "b4|http://rrr.de" +send_inline_keyboard "${CHAT[ID]}" "message" "Button 1|http://rrr.de" "Button 2|http://rrr.de" "" "Button on second row|http://rrr.de" + +# result + message ... + +----------------------------+ + | Button 1 | Button 2 | + |----------------------------| + | Button on second row | + +----------------------------+ ``` ##### edit_inline_buttons @@ -355,7 +375,7 @@ keyboard_json="$(_button_row "๐Ÿค– #Home of Deal-O-Mat Bot ๐Ÿค–|https://dealz.rr send_inline_keyboard "CHAT[ID]" "${keyboard_text}" "${keyboard_json}" -รค result +# result +---------------------------------+ | ๐Ÿค– #Home of Deal-O-Mat Bot ๐Ÿค– | |---------------------------------| @@ -1431,5 +1451,5 @@ The name of your bot is available as bash variable "$ME", there is no need to ca #### [Prev Best Practice](5_practice.md) #### [Next Notes for Developers](7_develop.md) -#### $$VERSION$$ v1.35-dev-22-g8c85c81 +#### $$VERSION$$ v1.35-dev-23-g5192212