Break line in link text with & text

2

I wish after the word inicial there was a line break:

<a>https://web.whatsapp.com/send?phone=seu-numero&text=Mensagem Inicial</a>
    
asked by anonymous 03.05.2018 / 17:19

1 answer

3

Use the ASCII control %0D ( carriage return ):

<a target="_blank" href="https://web.whatsapp.com/send?phone=seu-numero&text=Mensagem Inicial%0DNova linha">mensagem</a>

This will make a line break in the position you want.

    
03.05.2018 / 17:41