Skip to content

Commit ae8eeff

Browse files
Updated README file
1 parent 08c9497 commit ae8eeff

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

README.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,22 @@ All ``Set ...`` keywords provide corresponding ``Get ...`` keywords.
3838

3939
Examples:
4040

41-
# Send a message with one client and a List which contains our images
42-
@{IMAGE_LIST}= Create List http://www.mysite.com/image1.jpg http://www.mysite.com/image2.jpg
43-
Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=${IMAGE_LIST}
44-
45-
# Send a message with one client. Our attachments use a comma-separated string (default)
46-
Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg,http://www.mysite.com/image2.jpg
47-
48-
# Send a message with one client. Our attachments use a custom delimiter ^
49-
Set Delimiter ^
50-
Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg^http://www.mysite.com/image2.jpg
51-
41+
```robot
42+
# Send a message with one client and a List which contains our images
43+
@{IMAGE_LIST}= Create List http://www.mysite.com/image1.jpg http://www.mysite.com/image2.jpg
44+
Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=${IMAGE_LIST}
45+
```
46+
47+
```robot
48+
# Send a message with one client. Our attachments use a comma-separated string (default)
49+
Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg,http://www.mysite.com/image2.jpg
50+
```
51+
52+
```robot
53+
# Send a message with one client. Our attachments use a custom delimiter ^
54+
Set Delimiter ^
55+
Send Apprise Message title=Robot Framework Apprise Demo body=Connect to Apprise with your Robot Framework Tests! clients=<apprise_client> attachments=http://www.mysite.com/image1.jpg^http://www.mysite.com/image2.jpg
56+
```
5257

5358
## Known issues
5459

0 commit comments

Comments
 (0)