Add support to <br>
tomaswarynyca opened this issue · 4 comments
tomaswarynyca commented
In my case I don't use multiple messages in the template, I use a generic one.
If I use html the text is put all together so you need to add a <br>
to make a line break.
appleboy commented
Good point.
tomaswarynyca commented
If not see how to make it not put everything together
Here is an example of my code
<a>Hi</a>
<b>Hi</b>
This returns
HiHi
You should return
Hi
Hi
SershoCode commented
I agree with this, it is a very necessary functionality. I couldn't make a line break in any way. Please do it
appleboy commented
Try it out:
- name: send telegram notification
image: appleboy/drone-telegram
settings:
token: xxxxxxxxxx
to: telegram_user_id
format: HTML
+ message: >
+ Test HTML Format from file
+ <a href='https://google.com'>Google .com 1</a>
+ <a href='https://google.com'>Google .com 2</a>
+ <a href='https://google.com'>Google .com 3</a>
+ <a href='https://google.com'>Google .com 4</a>