Skip to content

Commit 4f99e48

Browse files
author
Dayal Chand Aichara
committed
Message decoration added
1 parent 7f29363 commit 4f99e48

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,32 @@ chatwork = Chatwork('Your Chatwork API Token')
188188

189189
***
190190

191+
## Message Decoration in Chatwork
192+
193+
```python
194+
# Heading ---> [title] message [/title]
195+
196+
# Horizontal line ---> [hr]
197+
198+
>>> chatwork.send_message(15983632, "[title] pychatworkAPI [/title][hr]")
199+
<Response [200]>
200+
201+
# Code Style ---> [code] message [/code]
202+
203+
>>> chatwork.send_message(15983632, "[code] from pychatworkAPI import Chatwork [/code]")
204+
<Response [200]>
205+
206+
# Box style ---> [info] message [/info]
207+
208+
>>> chatwork.send_message(15983632, "[info] Check out documentation here: https://pypi.org/project/pychatworkAPI/ [/info]")
209+
<Response [200]>
210+
211+
```
212+
<img src="images/chatwork2.png">
213+
214+
***
215+
216+
191217
## *Responses*
192218

193219
> <Response [200]> Successful

images/chatwork2.png

67.2 KB
Loading

0 commit comments

Comments
 (0)