如何在网站上的 WhatsApp 共享段落后添加中断?

How to make add break after paragraph in WhatsApp share on websites?

我正在尝试通过网站上的 Share on WhatsApp 提供以下输出:

This is a sentence. 
This is another sentence.

使用以下代码:

<a href="whatsapp://send?text=This is a sentence. 
This is another sentence." data-action="share/whatsapp/share">Share on WhatsApp</a>

但它给出的输出为:

This is a sentence. This is another sentence.

如何获取?

尝试encoding your string。您可能要查找的字符是 LF line feed,它对应于 %0A。也许是这样的:

This%20is%20a%20sentence.%0AThis%20is%20another%20sentence.